home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / cp / parse.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  331KB  |  7,632 lines

  1.  
  2. /*  A Bison parser, made from parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    IF    268
  18. #define    ELSE    269
  19. #define    WHILE    270
  20. #define    DO    271
  21. #define    FOR    272
  22. #define    SWITCH    273
  23. #define    CASE    274
  24. #define    DEFAULT    275
  25. #define    BREAK    276
  26. #define    CONTINUE    277
  27. #define    RETURN    278
  28. #define    GOTO    279
  29. #define    ASM_KEYWORD    280
  30. #define    GCC_ASM_KEYWORD    281
  31. #define    TYPEOF    282
  32. #define    ALIGNOF    283
  33. #define    HEADOF    284
  34. #define    CLASSOF    285
  35. #define    SIGOF    286
  36. #define    ATTRIBUTE    287
  37. #define    EXTENSION    288
  38. #define    LABEL    289
  39. #define    AGGR    290
  40. #define    VISSPEC    291
  41. #define    DELETE    292
  42. #define    NEW    293
  43. #define    OVERLOAD    294
  44. #define    THIS    295
  45. #define    OPERATOR    296
  46. #define    CXX_TRUE    297
  47. #define    CXX_FALSE    298
  48. #define    NAMESPACE    299
  49. #define    TYPENAME_KEYWORD    300
  50. #define    USING    301
  51. #define    LEFT_RIGHT    302
  52. #define    TEMPLATE    303
  53. #define    TYPEID    304
  54. #define    DYNAMIC_CAST    305
  55. #define    STATIC_CAST    306
  56. #define    REINTERPRET_CAST    307
  57. #define    CONST_CAST    308
  58. #define    SCOPE    309
  59. #define    EMPTY    310
  60. #define    PTYPENAME    311
  61. #define    NSNAME    312
  62. #define    THROW    313
  63. #define    ASSIGN    314
  64. #define    OROR    315
  65. #define    ANDAND    316
  66. #define    MIN_MAX    317
  67. #define    EQCOMPARE    318
  68. #define    ARITHCOMPARE    319
  69. #define    LSHIFT    320
  70. #define    RSHIFT    321
  71. #define    POINTSAT_STAR    322
  72. #define    DOT_STAR    323
  73. #define    UNARY    324
  74. #define    PLUSPLUS    325
  75. #define    MINUSMINUS    326
  76. #define    HYPERUNARY    327
  77. #define    PAREN_STAR_PAREN    328
  78. #define    POINTSAT    329
  79. #define    TRY    330
  80. #define    CATCH    331
  81. #define    TYPENAME_ELLIPSIS    332
  82. #define    PRE_PARSED_FUNCTION_DECL    333
  83. #define    EXTERN_LANG_STRING    334
  84. #define    ALL    335
  85. #define    PRE_PARSED_CLASS_DECL    336
  86. #define    TYPENAME_DEFN    337
  87. #define    IDENTIFIER_DEFN    338
  88. #define    PTYPENAME_DEFN    339
  89. #define    END_OF_LINE    340
  90. #define    END_OF_SAVED_INPUT    341
  91.  
  92. #line 29 "parse.y"
  93.  
  94. /* Cause the `yydebug' variable to be defined.  */
  95. #define YYDEBUG 1
  96.  
  97. #include "config.h"
  98.  
  99. #include <stdio.h>
  100. #include <errno.h>
  101.  
  102. #include "tree.h"
  103. #include "input.h"
  104. #include "flags.h"
  105. #include "lex.h"
  106. #include "cp-tree.h"
  107. #include "output.h"
  108.  
  109. /* Since parsers are distinct for each language, put the language string
  110.    definition here.  (fnf) */
  111. char *language_string = "GNU C++";
  112.  
  113. extern tree void_list_node;
  114. extern struct obstack permanent_obstack;
  115.  
  116. #ifndef errno
  117. extern int errno;
  118. #endif
  119.  
  120. extern int end_of_file;
  121. extern int current_class_depth;
  122. extern int flag_new_for_scope;
  123.  
  124. void yyerror ();
  125.  
  126. /* Like YYERROR but do call yyerror.  */
  127. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  128.  
  129. #define OP0(NODE) (TREE_OPERAND (NODE, 0))
  130. #define OP1(NODE) (TREE_OPERAND (NODE, 1))
  131.  
  132. /* Contains the statement keyword (if/while/do) to include in an
  133.    error message if the user supplies an empty conditional expression.  */
  134. static char *cond_stmt_keyword;
  135.  
  136. /* Nonzero if we have an `extern "C"' acting as an extern specifier.  */
  137. int have_extern_spec;
  138. int used_extern_spec;
  139.  
  140. void yyhook ();
  141.  
  142. /* Cons up an empty parameter list.  */
  143. #ifdef __GNUC__
  144. __inline
  145. #endif
  146. static tree
  147. empty_parms ()
  148. {
  149.   tree parms;
  150.  
  151.   if (strict_prototype)
  152.     parms = void_list_node;
  153.   else
  154.     parms = NULL_TREE;
  155.   return parms;
  156. }
  157.  
  158. #line 97 "parse.y"
  159. typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
  160. #line 274 "parse.y"
  161.  
  162. /* List of types and structure classes of the current declaration.  */
  163. static tree current_declspecs;
  164. static tree prefix_attributes = NULL_TREE;
  165.  
  166. /* When defining an aggregate, this is the most recent one being defined.  */
  167. static tree current_aggr;
  168.  
  169. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  170.  
  171. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  172. extern void yyprint ();
  173. extern tree combine_strings        PROTO((tree));
  174.  
  175. #ifndef YYLTYPE
  176. typedef
  177.   struct yyltype
  178.     {
  179.       int timestamp;
  180.       int first_line;
  181.       int first_column;
  182.       int last_line;
  183.       int last_column;
  184.       char *text;
  185.    }
  186.   yyltype;
  187.  
  188. #define YYLTYPE yyltype
  189. #endif
  190.  
  191. #include <stdio.h>
  192.  
  193. #ifndef __cplusplus
  194. #ifndef __STDC__
  195. #define const
  196. #endif
  197. #endif
  198.  
  199.  
  200.  
  201. #define    YYFINAL        1383
  202. #define    YYFLAG        -32768
  203. #define    YYNTBASE    111
  204.  
  205. #define YYTRANSLATE(x) ((unsigned)(x) <= 341 ? yytranslate[x] : 350)
  206.  
  207. static const char yytranslate[] = {     0,
  208.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  209.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.      2,     2,   109,     2,     2,     2,    82,    70,     2,    93,
  212.    107,    80,    78,    59,    79,    92,    81,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,    62,    60,    74,
  214.     64,    75,    65,     2,     2,     2,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.     94,     2,   110,    69,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,    58,    68,   108,    88,     2,     2,     2,     2,
  221.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  222.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  226.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  227.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  228.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  229.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  230.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  231.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  232.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  233.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  234.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  235.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  236.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  237.     36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  238.     46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
  239.     56,    57,    61,    63,    66,    67,    71,    72,    73,    76,
  240.     77,    83,    84,    85,    86,    87,    89,    90,    91,    95,
  241.     96,    97,    98,    99,   100,   101,   102,   103,   104,   105,
  242.    106
  243. };
  244.  
  245. #if YYDEBUG != 0
  246. static const short yyprhs[] = {     0,
  247.      0,     1,     3,     4,     7,    10,    12,    13,    14,    15,
  248.     17,    19,    20,    23,    25,    27,    29,    31,    37,    42,
  249.     47,    52,    53,    60,    61,    67,    73,    76,    81,    84,
  250.     88,    92,    94,    96,    99,   102,   104,   107,   108,   114,
  251.    116,   120,   122,   125,   127,   131,   133,   137,   139,   143,
  252.    144,   150,   151,   157,   158,   164,   165,   171,   175,   179,
  253.    186,   194,   199,   203,   207,   209,   211,   213,   215,   217,
  254.    220,   224,   228,   232,   236,   239,   242,   245,   248,   251,
  255.    253,   257,   262,   266,   272,   277,   281,   285,   288,   292,
  256.    296,   299,   301,   308,   313,   317,   321,   324,   327,   330,
  257.    335,   338,   342,   343,   344,   346,   350,   353,   357,   359,
  258.    364,   367,   372,   375,   380,   383,   385,   387,   389,   391,
  259.    393,   395,   397,   399,   401,   403,   407,   411,   416,   421,
  260.    425,   430,   434,   439,   440,   442,   446,   448,   450,   451,
  261.    458,   459,   461,   462,   465,   467,   469,   471,   473,   475,
  262.    477,   479,   481,   485,   487,   491,   492,   494,   496,   497,
  263.    506,   508,   510,   514,   519,   523,   526,   528,   532,   536,
  264.    540,   544,   546,   548,   550,   551,   555,   558,   561,   564,
  265.    567,   570,   573,   578,   581,   586,   589,   593,   597,   602,
  266.    607,   613,   619,   626,   629,   634,   640,   644,   648,   652,
  267.    654,   658,   661,   665,   670,   672,   675,   681,   683,   688,
  268.    693,   698,   700,   704,   708,   712,   716,   720,   724,   728,
  269.    732,   736,   740,   744,   748,   752,   756,   760,   764,   768,
  270.    772,   776,   782,   786,   790,   792,   795,   799,   801,   803,
  271.    805,   807,   809,   811,   813,   816,   819,   823,   825,   827,
  272.    831,   833,   835,   837,   839,   843,   847,   851,   852,   857,
  273.    858,   865,   868,   873,   876,   879,   881,   886,   888,   896,
  274.    904,   912,   920,   925,   930,   933,   936,   938,   943,   946,
  275.    949,   952,   958,   962,   968,   972,   977,   984,   987,   989,
  276.    992,   994,   997,   999,  1001,  1003,  1006,  1007,  1010,  1013,
  277.   1014,  1018,  1022,  1026,  1030,  1034,  1037,  1040,  1042,  1044,
  278.   1046,  1049,  1052,  1055,  1058,  1060,  1062,  1064,  1066,  1069,
  279.   1072,  1076,  1080,  1084,  1089,  1091,  1094,  1097,  1101,  1104,
  280.   1106,  1108,  1111,  1114,  1118,  1121,  1123,  1126,  1129,  1133,
  281.   1135,  1138,  1140,  1142,  1144,  1149,  1154,  1159,  1164,  1166,
  282.   1168,  1170,  1172,  1176,  1178,  1182,  1184,  1188,  1189,  1194,
  283.   1195,  1203,  1208,  1209,  1217,  1222,  1223,  1231,  1236,  1237,
  284.   1245,  1250,  1251,  1253,  1255,  1258,  1265,  1267,  1271,  1272,
  285.   1274,  1279,  1286,  1291,  1293,  1295,  1297,  1299,  1301,  1305,
  286.   1306,  1309,  1311,  1314,  1318,  1323,  1325,  1327,  1331,  1336,
  287.   1343,  1347,  1353,  1354,  1362,  1367,  1368,  1375,  1379,  1382,
  288.   1385,  1388,  1393,  1395,  1396,  1398,  1399,  1401,  1403,  1406,
  289.   1409,  1412,  1415,  1419,  1422,  1425,  1428,  1430,  1433,  1437,
  290.   1441,  1442,  1444,  1448,  1451,  1453,  1455,  1456,  1458,  1461,
  291.   1463,  1467,  1469,  1472,  1474,  1479,  1484,  1486,  1488,  1491,
  292.   1494,  1496,  1497,  1499,  1504,  1508,  1510,  1513,  1516,  1519,
  293.   1522,  1525,  1527,  1530,  1533,  1539,  1542,  1544,  1554,  1562,
  294.   1564,  1565,  1567,  1571,  1572,  1574,  1578,  1580,  1582,  1584,
  295.   1586,  1592,  1597,  1603,  1608,  1612,  1618,  1623,  1629,  1634,
  296.   1638,  1640,  1644,  1646,  1650,  1653,  1655,  1662,  1663,  1666,
  297.   1668,  1671,  1672,  1675,  1680,  1685,  1688,  1693,  1697,  1701,
  298.   1704,  1707,  1711,  1713,  1715,  1717,  1720,  1724,  1729,  1733,
  299.   1737,  1740,  1742,  1746,  1750,  1753,  1756,  1760,  1762,  1766,
  300.   1770,  1773,  1776,  1780,  1782,  1786,  1790,  1795,  1799,  1801,
  301.   1804,  1807,  1809,  1812,  1817,  1822,  1825,  1827,  1829,  1831,
  302.   1834,  1837,  1840,  1843,  1845,  1848,  1850,  1853,  1856,  1860,
  303.   1862,  1866,  1869,  1873,  1876,  1879,  1883,  1885,  1889,  1894,
  304.   1898,  1901,  1904,  1906,  1910,  1913,  1916,  1918,  1921,  1925,
  305.   1927,  1931,  1933,  1939,  1943,  1948,  1952,  1957,  1960,  1963,
  306.   1967,  1970,  1972,  1974,  1977,  1980,  1983,  1984,  1985,  1986,
  307.   1988,  1990,  1993,  1997,  1999,  2002,  2007,  2008,  2009,  2016,
  308.   2018,  2022,  2024,  2026,  2028,  2031,  2032,  2033,  2040,  2042,
  309.   2043,  2044,  2052,  2053,  2054,  2062,  2063,  2064,  2065,  2066,
  310.   2081,  2082,  2083,  2093,  2094,  2100,  2101,  2109,  2110,  2115,
  311.   2118,  2121,  2124,  2128,  2135,  2144,  2155,  2168,  2173,  2177,
  312.   2180,  2183,  2185,  2187,  2188,  2189,  2195,  2196,  2197,  2205,
  313.   2207,  2209,  2213,  2217,  2220,  2223,  2226,  2229,  2231,  2234,
  314.   2235,  2237,  2238,  2240,  2242,  2243,  2245,  2247,  2251,  2256,
  315.   2258,  2262,  2263,  2265,  2267,  2269,  2272,  2275,  2278,  2280,
  316.   2282,  2285,  2288,  2291,  2294,  2296,  2300,  2303,  2306,  2311,
  317.   2314,  2317,  2320,  2323,  2326,  2329,  2331,  2334,  2337,  2339,
  318.   2341,  2342,  2343,  2345,  2346,  2351,  2354,  2356,  2358,  2362,
  319.   2363,  2367,  2371,  2375,  2377,  2380,  2383,  2386,  2389,  2392,
  320.   2395,  2398,  2401,  2404,  2407,  2410,  2413,  2416,  2419,  2422,
  321.   2425,  2428,  2431,  2434,  2437,  2440,  2443,  2446,  2450,  2453,
  322.   2456,  2459,  2462,  2466,  2469,  2472,  2477,  2482,  2486
  323. };
  324.  
  325. static const short yyrhs[] = {    -1,
  326.    112,     0,     0,   113,   118,     0,   112,   118,     0,   112,
  327.      0,     0,     0,     0,    25,     0,    26,     0,     0,   119,
  328.    120,     0,   140,     0,   139,     0,   133,     0,   131,     0,
  329.    117,    93,   191,   107,    60,     0,   125,    58,   114,   108,
  330.      0,   125,   115,   140,   116,     0,   125,   115,   139,   116,
  331.      0,     0,    44,   149,    58,   121,   114,   108,     0,     0,
  332.     44,    58,   122,   114,   108,     0,    44,   149,    64,   124,
  333.     60,     0,   123,    60,     0,    46,    44,   124,    60,     0,
  334.     46,   275,     0,    46,   285,   275,     0,    46,   285,   182,
  335.      0,   182,     0,   275,     0,   285,   275,     0,   285,   182,
  336.      0,    99,     0,   125,    99,     0,     0,    48,    74,   127,
  337.    128,    75,     0,   130,     0,   128,    59,   130,     0,   234,
  338.      0,   234,   149,     0,   129,     0,   129,    64,   205,     0,
  339.    340,     0,    39,   132,    60,     0,     3,     0,   132,    59,
  340.      3,     0,     0,   126,   236,    58,   134,    60,     0,     0,
  341.    126,   237,    58,   135,    60,     0,     0,   126,   236,    62,
  342.    136,    60,     0,     0,   126,   237,    62,   137,    60,     0,
  343.    126,   236,    60,     0,   126,   237,    60,     0,   126,   272,
  344.    344,   210,   219,   138,     0,   126,   199,   196,   344,   210,
  345.    219,   138,     0,   126,   202,   272,   138,     0,   126,     1,
  346.    108,     0,   126,     1,    60,     0,    58,     0,    62,     0,
  347.     60,     0,    64,     0,    23,     0,   209,    60,     0,   202,
  348.    208,    60,     0,   202,   272,    60,     0,   199,   207,    60,
  349.      0,   199,   196,    60,     0,   202,    60,     0,   152,    60,
  350.      0,   199,    60,     0,     1,    60,     0,     1,   108,     0,
  351.     60,     0,   141,   145,   297,     0,   141,   144,   145,   297,
  352.      0,   141,   192,   297,     0,   141,   144,    60,   192,   297,
  353.      0,   141,   144,   192,   297,     0,   199,   196,     1,     0,
  354.    202,   272,     1,     0,   272,     1,     0,   199,   196,   344,
  355.      0,   202,   272,   344,     0,   272,   344,     0,    98,     0,
  356.    199,    93,   335,   107,   263,   344,     0,   199,    47,   263,
  357.    344,     0,   199,   196,   344,     0,   202,   272,   344,     0,
  358.    272,   344,     0,    23,     3,     0,   143,   226,     0,   143,
  359.     93,   172,   107,     0,   143,    47,     0,    62,   146,   147,
  360.      0,     0,     0,   148,     0,   147,    59,   148,     0,   147,
  361.      1,     0,    93,   172,   107,     0,    47,     0,   150,    93,
  362.    172,   107,     0,   150,    47,     0,   282,    93,   172,   107,
  363.      0,   282,    47,     0,   276,    93,   172,   107,     0,   276,
  364.     47,     0,     3,     0,     4,     0,    56,     0,    57,     0,
  365.      3,     0,    56,     0,    57,     0,   103,     0,   102,     0,
  366.    104,     0,    48,   235,   160,     0,    48,   199,   196,     0,
  367.      5,    48,   235,   160,     0,     5,    48,   199,   196,     0,
  368.    154,   155,   160,     0,    56,    74,   156,    75,     0,    56,
  369.     74,    75,     0,     4,    74,   156,    75,     0,     0,   157,
  370.      0,   156,    59,   157,     0,   198,     0,   180,     0,     0,
  371.    101,   242,   159,   247,   248,   108,     0,     0,   158,     0,
  372.      0,   158,   161,     0,    79,     0,    78,     0,    86,     0,
  373.     87,     0,   109,     0,   171,     0,   180,     0,    47,     0,
  374.     93,   163,   107,     0,    47,     0,    93,   167,   107,     0,
  375.      0,   167,     0,     1,     0,     0,   325,   196,   344,   210,
  376.    219,    64,   168,   227,     0,   163,     0,   108,     0,   294,
  377.    290,   108,     0,   294,   290,     1,   108,     0,   294,     1,
  378.    108,     0,    58,   169,     0,   304,     0,   180,    59,   180,
  379.      0,   180,    59,     1,     0,   171,    59,   180,     0,   171,
  380.     59,     1,     0,   180,     0,   171,     0,   185,     0,     0,
  381.     33,   174,   178,     0,    80,   178,     0,    70,   178,     0,
  382.     88,   178,     0,   162,   178,     0,    67,   149,     0,    11,
  383.    173,     0,    11,    93,   198,   107,     0,    28,   173,     0,
  384.     28,    93,   198,   107,     0,   188,   262,     0,   188,   262,
  385.    176,     0,   188,   175,   262,     0,   188,   175,   262,   176,
  386.      0,   188,    93,   198,   107,     0,   188,    93,   198,   107,
  387.    176,     0,   188,   175,    93,   198,   107,     0,   188,   175,
  388.     93,   198,   107,   176,     0,   189,   178,     0,   189,    94,
  389.    110,   178,     0,   189,    94,   163,   110,   178,     0,    93,
  390.    172,   107,     0,    58,   172,   108,     0,    93,   172,   107,
  391.      0,    47,     0,    93,   205,   107,     0,    64,   227,     0,
  392.     93,   198,   107,     0,   177,    93,   198,   107,     0,   179,
  393.      0,   177,   179,     0,   177,    58,   228,   232,   108,     0,
  394.    173,     0,    29,    93,   163,   107,     0,    30,    93,   163,
  395.    107,     0,    30,    93,     4,   107,     0,   178,     0,   180,
  396.     83,   180,     0,   180,    84,   180,     0,   180,    78,   180,
  397.      0,   180,    79,   180,     0,   180,    80,   180,     0,   180,
  398.     81,   180,     0,   180,    82,   180,     0,   180,    76,   180,
  399.      0,   180,    77,   180,     0,   180,    73,   180,     0,   180,
  400.     74,   180,     0,   180,    75,   180,     0,   180,    72,   180,
  401.      0,   180,    71,   180,     0,   180,    70,   180,     0,   180,
  402.     68,   180,     0,   180,    69,   180,     0,   180,    67,   180,
  403.      0,   180,    66,   180,     0,   180,    65,   330,    62,   180,
  404.      0,   180,    64,   180,     0,   180,    63,   180,     0,    61,
  405.      0,    61,   180,     0,    88,   342,   149,     0,   349,     0,
  406.      3,     0,    56,     0,    57,     0,   181,     0,     4,     0,
  407.    181,     0,    80,   183,     0,    70,   183,     0,    93,   183,
  408.    107,     0,   274,     0,   181,     0,    93,   183,   107,     0,
  409.    181,     0,     8,     0,   190,     0,   191,     0,    93,   163,
  410.    107,     0,    93,   183,   107,     0,    93,     1,   107,     0,
  411.      0,    93,   186,   298,   107,     0,     0,   185,    93,   172,
  412.    107,   187,   161,     0,   185,    47,     0,   185,    94,   163,
  413.    110,     0,   185,    86,     0,   185,    87,     0,    40,     0,
  414.      7,    93,   172,   107,     0,   278,     0,    50,    74,   198,
  415.     75,    93,   163,   107,     0,    51,    74,   198,    75,    93,
  416.    163,   107,     0,    52,    74,   198,    75,    93,   163,   107,
  417.      0,    53,    74,   198,    75,    93,   163,   107,     0,    49,
  418.     93,   163,   107,     0,    49,    93,   198,   107,     0,   285,
  419.      3,     0,   285,   349,     0,   277,     0,   277,    93,   172,
  420.    107,     0,   277,    47,     0,   193,   182,     0,   193,   277,
  421.      0,   193,   182,    93,   172,   107,     0,   193,   182,    47,
  422.      0,   193,   277,    93,   172,   107,     0,   193,   277,    47,
  423.      0,   193,    88,     6,    47,     0,   193,     6,    54,    88,
  424.      6,    47,     0,   193,     1,     0,    38,     0,   285,    38,
  425.      0,    37,     0,   285,   189,     0,    42,     0,    43,     0,
  426.      9,     0,   191,     9,     0,     0,   185,    92,     0,   185,
  427.     91,     0,     0,   205,   196,    60,     0,   199,   196,    60,
  428.      0,   205,   207,    60,     0,   199,   207,    60,     0,   202,
  429.    208,    60,     0,   199,    60,     0,   202,    60,     0,   268,
  430.      0,   272,     0,    47,     0,   197,    47,     0,   203,   288,
  431.      0,   264,   288,     0,   205,   288,     0,   203,     0,   264,
  432.      0,   203,     0,   200,     0,   202,   205,     0,   205,   201,
  433.      0,   205,   204,   201,     0,   202,   205,   201,     0,   202,
  434.    205,   204,     0,   202,   205,   204,   201,     0,     5,     0,
  435.    201,   206,     0,   201,     5,     0,   201,   220,   194,     0,
  436.    220,   194,     0,   264,     0,     5,     0,   202,     7,     0,
  437.    202,     5,     0,   202,   220,   194,     0,   220,   194,     0,
  438.    205,     0,   264,   205,     0,   205,   204,     0,   264,   205,
  439.    204,     0,   206,     0,   204,   206,     0,   229,     0,     6,
  440.      0,   282,     0,    27,    93,   163,   107,     0,    27,    93,
  441.    198,   107,     0,    31,    93,   163,   107,     0,    31,    93,
  442.    198,   107,     0,     6,     0,     7,     0,   229,     0,   211,
  443.      0,   207,    59,   213,     0,   215,     0,   208,    59,   213,
  444.      0,   217,     0,   209,    59,   213,     0,     0,   117,    93,
  445.    191,   107,     0,     0,   196,   344,   210,   219,    64,   212,
  446.    227,     0,   196,   344,   210,   219,     0,     0,   196,   344,
  447.    210,   219,    64,   214,   227,     0,   196,   344,   210,   219,
  448.      0,     0,   272,   344,   210,   219,    64,   216,   227,     0,
  449.    272,   344,   210,   219,     0,     0,   272,   344,   210,   219,
  450.     64,   218,   227,     0,   272,   344,   210,   219,     0,     0,
  451.    220,     0,   221,     0,   220,   221,     0,    32,    93,    93,
  452.    222,   107,   107,     0,   223,     0,   222,    59,   223,     0,
  453.      0,   224,     0,   224,    93,     3,   107,     0,   224,    93,
  454.      3,    59,   172,   107,     0,   224,    93,   172,   107,     0,
  455.    149,     0,     5,     0,     6,     0,     7,     0,   149,     0,
  456.    225,    59,   149,     0,     0,    64,   227,     0,   180,     0,
  457.     58,   108,     0,    58,   228,   108,     0,    58,   228,    59,
  458.    108,     0,     1,     0,   227,     0,   228,    59,   227,     0,
  459.     94,   180,   110,   227,     0,   228,    59,    19,   180,    62,
  460.    227,     0,   149,    62,   227,     0,   228,    59,   149,    62,
  461.    227,     0,     0,    12,   149,    58,   230,   260,   233,   108,
  462.      0,    12,   149,    58,   108,     0,     0,    12,    58,   231,
  463.    260,   233,   108,     0,    12,    58,   108,     0,    12,   149,
  464.      0,    12,   283,     0,    45,   283,     0,   241,   247,   248,
  465.    108,     0,   241,     0,     0,    59,     0,     0,    59,     0,
  466.     35,     0,   234,     5,     0,   234,     6,     0,   234,     7,
  467.      0,   234,    35,     0,   234,   154,    60,     0,   234,   149,
  468.      0,   234,   283,     0,   234,   153,     0,   235,     0,   234,
  469.    151,     0,   234,   154,    58,     0,   234,   154,    62,     0,
  470.      0,   236,     0,   237,   238,   242,     0,   234,    58,     0,
  471.    240,     0,   239,     0,     0,    62,     0,    62,   243,     0,
  472.    244,     0,   243,    59,   244,     0,   245,     0,   246,   245,
  473.      0,   282,     0,    31,    93,   163,   107,     0,    31,    93,
  474.    198,   107,     0,    36,     0,     5,     0,   246,    36,     0,
  475.    246,     5,     0,    58,     0,     0,   249,     0,   248,    36,
  476.     62,   249,     0,   248,    36,    62,     0,   250,     0,   249,
  477.    250,     0,   251,    60,     0,   251,   108,     0,   142,    62,
  478.      0,   142,    58,     0,    60,     0,   199,   252,     0,   202,
  479.    253,     0,   272,   344,   210,   219,   226,     0,    62,   180,
  480.      0,     1,     0,   199,    93,   335,   107,   263,   344,   210,
  481.    219,   226,     0,   199,    47,   263,   344,   210,   219,   226,
  482.      0,   123,     0,     0,   254,     0,   252,    59,   255,     0,
  483.      0,   257,     0,   253,    59,   259,     0,   256,     0,   257,
  484.      0,   258,     0,   259,     0,   268,   344,   210,   219,   226,
  485.      0,     4,    62,   180,   219,     0,   272,   344,   210,   219,
  486.    226,     0,     3,    62,   180,   219,     0,    62,   180,   219,
  487.      0,   268,   344,   210,   219,   226,     0,     4,    62,   180,
  488.    219,     0,   272,   344,   210,   219,   226,     0,     3,    62,
  489.    180,   219,     0,    62,   180,   219,     0,   261,     0,   260,
  490.     59,   261,     0,   149,     0,   149,    64,   180,     0,   325,
  491.    286,     0,   325,     0,    93,   198,   107,    94,   163,   110,
  492.      0,     0,   263,     7,     0,     7,     0,   264,     7,     0,
  493.      0,   265,   163,     0,   265,    93,   172,   107,     0,   265,
  494.     93,   335,   107,     0,   265,    47,     0,   265,    93,     1,
  495.    107,     0,    80,   264,   268,     0,    70,   264,   268,     0,
  496.     80,   268,     0,    70,   268,     0,   284,   263,   268,     0,
  497.    271,     0,   279,     0,   270,     0,   280,   279,     0,   271,
  498.    267,   263,     0,   271,    94,   266,   110,     0,   271,    94,
  499.    110,     0,    93,   268,   107,     0,   280,   279,     0,   279,
  500.      0,    80,   264,   272,     0,    70,   264,   272,     0,    80,
  501.    272,     0,    70,   272,     0,   284,   263,   272,     0,   184,
  502.      0,    80,   264,   272,     0,    70,   264,   272,     0,    80,
  503.    273,     0,    70,   273,     0,   284,   263,   272,     0,   274,
  504.      0,   184,   267,   263,     0,    93,   273,   107,     0,   184,
  505.     94,   266,   110,     0,   184,    94,   110,     0,   276,     0,
  506.    280,   182,     0,   280,   181,     0,   276,     0,   285,   276,
  507.      0,   205,    93,   172,   107,     0,   205,    93,   183,   107,
  508.      0,   205,   197,     0,     4,     0,   153,     0,   281,     0,
  509.    280,   281,     0,     4,    54,     0,    57,    54,     0,   153,
  510.     54,     0,   269,     0,   285,   269,     0,   270,     0,   285,
  511.    269,     0,   280,    80,     0,   285,   280,    80,     0,    54,
  512.      0,    80,   263,   286,     0,    80,   263,     0,    70,   263,
  513.    286,     0,    70,   263,     0,   284,   263,     0,   284,   263,
  514.    286,     0,   287,     0,    94,   163,   110,     0,   287,    94,
  515.    266,   110,     0,    80,   264,   288,     0,    80,   288,     0,
  516.     80,   264,     0,    80,     0,    70,   264,   288,     0,    70,
  517.    288,     0,    70,   264,     0,    70,     0,   284,   263,     0,
  518.    284,   263,   288,     0,   289,     0,    93,   288,   107,     0,
  519.     90,     0,   289,    93,   335,   107,   263,     0,   289,    47,
  520.    263,     0,   289,    94,   266,   110,     0,   289,    94,   110,
  521.      0,    93,   336,   107,   263,     0,   177,   263,     0,   197,
  522.    263,     0,    94,   266,   110,     0,    94,   110,     0,   303,
  523.      0,   291,     0,   290,   303,     0,   290,   291,     0,     1,
  524.     60,     0,     0,     0,     0,   295,     0,   296,     0,   295,
  525.    296,     0,    34,   225,    60,     0,   298,     0,     1,   298,
  526.      0,    58,   292,   169,   293,     0,     0,     0,    13,   300,
  527.    292,   165,   301,   302,     0,   298,     0,   292,   304,   293,
  528.      0,   298,     0,   304,     0,   195,     0,   163,    60,     0,
  529.      0,     0,   299,    14,   305,   302,   306,   293,     0,   299,
  530.      0,     0,     0,    15,   307,   292,   165,   308,   170,   293,
  531.      0,     0,     0,    16,   309,   302,    15,   310,   164,    60,
  532.      0,     0,     0,     0,     0,    17,   311,    93,   328,   312,
  533.    292,   166,    60,   313,   330,   107,   314,   170,   293,     0,
  534.      0,     0,    18,   292,    93,   167,   107,   315,   302,   316,
  535.    293,     0,     0,    19,   180,    62,   317,   303,     0,     0,
  536.     19,   180,    10,   180,    62,   318,   303,     0,     0,    20,
  537.     62,   319,   303,     0,    21,    60,     0,    22,    60,     0,
  538.     23,    60,     0,    23,   163,    60,     0,   117,   329,    93,
  539.    191,   107,    60,     0,   117,   329,    93,   191,    62,   331,
  540.    107,    60,     0,   117,   329,    93,   191,    62,   331,    62,
  541.    331,   107,    60,     0,   117,   329,    93,   191,    62,   331,
  542.     62,   331,    62,   334,   107,    60,     0,    24,    80,   163,
  543.     60,     0,    24,   149,    60,     0,   327,   303,     0,   327,
  544.    108,     0,    60,     0,   320,     0,     0,     0,    95,   321,
  545.    298,   322,   323,     0,     0,     0,   323,    96,   292,   326,
  546.    298,   324,   293,     0,   203,     0,   264,     0,    93,    10,
  547.    107,     0,    93,   341,   107,     0,     3,    62,     0,    56,
  548.     62,     0,     4,    62,     0,   330,    60,     0,   195,     0,
  549.     58,   169,     0,     0,     7,     0,     0,   163,     0,     1,
  550.      0,     0,   332,     0,   333,     0,   332,    59,   333,     0,
  551.      9,    93,   163,   107,     0,     9,     0,   334,    59,     9,
  552.      0,     0,   336,     0,   198,     0,   337,     0,   338,    10,
  553.      0,   337,    10,     0,   198,    10,     0,    10,     0,    97,
  554.      0,   337,    97,     0,   198,    97,     0,   337,    62,     0,
  555.    198,    62,     0,   339,     0,   341,    64,   227,     0,   338,
  556.    340,     0,   338,   343,     0,   338,   343,    64,   227,     0,
  557.    337,    59,     0,   198,    59,     0,   200,   196,     0,   203,
  558.    196,     0,   205,   196,     0,   200,   288,     0,   200,     0,
  559.    202,   272,     0,   341,   226,     0,   339,     0,   198,     0,
  560.      0,     0,   272,     0,     0,    61,    93,   346,   107,     0,
  561.     61,    47,     0,   198,     0,   345,     0,   346,    59,   345,
  562.      0,     0,    80,   263,   347,     0,    70,   263,   347,     0,
  563.    284,   263,   347,     0,    41,     0,   348,    80,     0,   348,
  564.     81,     0,   348,    82,     0,   348,    78,     0,   348,    79,
  565.      0,   348,    70,     0,   348,    68,     0,   348,    69,     0,
  566.    348,    88,     0,   348,    59,     0,   348,    73,     0,   348,
  567.     74,     0,   348,    75,     0,   348,    72,     0,   348,    63,
  568.      0,   348,    64,     0,   348,    76,     0,   348,    77,     0,
  569.    348,    86,     0,   348,    87,     0,   348,    67,     0,   348,
  570.     66,     0,   348,   109,     0,   348,    65,    62,     0,   348,
  571.     71,     0,   348,    91,     0,   348,    83,     0,   348,    47,
  572.      0,   348,    94,   110,     0,   348,    38,     0,   348,    37,
  573.      0,   348,    38,    94,   110,     0,   348,    37,    94,   110,
  574.      0,   348,   325,   347,     0,   348,     1,     0
  575. };
  576.  
  577. #endif
  578.  
  579. #if YYDEBUG != 0
  580. static const short yyrline[] = { 0,
  581.    290,   291,   305,   307,   308,   312,   314,   317,   322,   326,
  582.    328,   331,   334,   339,   342,   344,   346,   347,   350,   352,
  583.    355,   358,   360,   362,   364,   366,   368,   370,   374,   377,
  584.    379,   383,   385,   386,   388,   392,   395,   401,   404,   408,
  585.    411,   415,   425,   429,   439,   441,   444,   449,   451,   455,
  586.    461,   461,   464,   464,   467,   467,   480,   480,   485,   490,
  587.    507,   530,   540,   541,   544,   545,   546,   547,   548,   551,
  588.    554,   557,   562,   567,   573,   575,   576,   595,   596,   597,
  589.    600,   614,   627,   630,   633,   636,   638,   640,   644,   650,
  590.    655,   660,   667,   678,   685,   687,   689,   693,   701,   703,
  591.    705,   709,   722,   742,   745,   747,   748,   751,   757,   763,
  592.    765,   767,   769,   772,   776,   782,   784,   785,   786,   789,
  593.    791,   792,   795,   797,   798,   801,   804,   806,   808,   812,
  594.    817,   820,   822,   826,   831,   834,   838,   841,   844,   878,
  595.    896,   899,   903,   906,   910,   912,   914,   916,   918,   922,
  596.    924,   927,   932,   936,   941,   945,   948,   950,   954,   973,
  597.    980,   983,   985,   986,   987,   990,   993,   997,  1001,  1004,
  598.   1006,  1010,  1013,  1016,  1025,  1028,  1031,  1033,  1035,  1037,
  599.   1044,  1055,  1077,  1079,  1081,  1086,  1088,  1090,  1092,  1094,
  600.   1097,  1099,  1101,  1104,  1106,  1110,  1116,  1119,  1126,  1129,
  601.   1131,  1139,  1148,  1154,  1160,  1162,  1164,  1177,  1179,  1181,
  602.   1183,  1200,  1203,  1205,  1207,  1209,  1211,  1213,  1215,  1217,
  603.   1219,  1221,  1223,  1225,  1227,  1229,  1231,  1233,  1235,  1237,
  604.   1239,  1241,  1243,  1246,  1253,  1255,  1272,  1275,  1276,  1277,
  605.   1278,  1281,  1283,  1286,  1288,  1290,  1292,  1296,  1298,  1299,
  606.   1303,  1323,  1324,  1325,  1327,  1335,  1343,  1345,  1353,  1374,
  607.   1379,  1386,  1393,  1395,  1404,  1409,  1432,  1476,  1477,  1480,
  608.   1483,  1486,  1489,  1491,  1494,  1533,  1540,  1542,  1544,  1546,
  609.   1549,  1552,  1568,  1584,  1596,  1609,  1618,  1628,  1673,  1675,
  610.   1679,  1681,  1685,  1688,  1693,  1695,  1699,  1712,  1714,  1721,
  611.   1725,  1736,  1744,  1750,  1755,  1757,  1762,  1769,  1771,  1775,
  612.   1779,  1785,  1788,  1790,  1792,  1794,  1802,  1804,  1807,  1810,
  613.   1812,  1814,  1816,  1818,  1823,  1829,  1831,  1836,  1838,  1846,
  614.   1849,  1851,  1854,  1860,  1862,  1873,  1876,  1878,  1880,  1884,
  615.   1887,  1895,  1896,  1897,  1898,  1902,  1906,  1920,  1938,  1939,
  616.   1940,  1943,  1945,  1948,  1950,  1953,  1955,  1958,  1961,  1965,
  617.   1982,  1984,  2002,  2008,  2009,  2015,  2023,  2025,  2034,  2042,
  618.   2044,  2055,  2058,  2062,  2065,  2069,  2074,  2077,  2081,  2084,
  619.   2086,  2088,  2090,  2097,  2099,  2100,  2101,  2105,  2108,  2112,
  620.   2115,  2118,  2120,  2123,  2126,  2129,  2135,  2138,  2141,  2143,
  621.   2145,  2147,  2151,  2155,  2159,  2162,  2165,  2169,  2172,  2174,
  622.   2176,  2179,  2227,  2237,  2239,  2242,  2244,  2248,  2249,  2251,
  623.   2253,  2255,  2259,  2268,  2271,  2273,  2275,  2278,  2281,  2287,
  624.   2291,  2295,  2298,  2307,  2312,  2312,  2314,  2317,  2319,  2323,
  625.   2325,  2329,  2357,  2388,  2390,  2412,  2436,  2438,  2442,  2468,
  626.   2477,  2543,  2546,  2553,  2564,  2573,  2577,  2592,  2594,  2599,
  627.   2601,  2603,  2607,  2615,  2619,  2622,  2624,  2635,  2640,  2645,
  628.   2650,  2653,  2654,  2665,  2668,  2669,  2680,  2682,  2685,  2687,
  629.   2690,  2695,  2701,  2706,  2710,  2716,  2720,  2725,  2729,  2732,
  630.   2741,  2743,  2747,  2750,  2755,  2758,  2762,  2771,  2774,  2778,
  631.   2781,  2788,  2792,  2798,  2801,  2803,  2805,  2811,  2814,  2816,
  632.   2818,  2820,  2824,  2827,  2841,  2844,  2849,  2852,  2854,  2856,
  633.   2858,  2862,  2868,  2871,  2873,  2875,  2877,  2881,  2884,  2887,
  634.   2889,  2891,  2893,  2897,  2900,  2903,  2905,  2907,  2909,  2914,
  635.   2920,  2926,  2928,  2932,  2935,  2937,  2941,  2943,  2946,  2948,
  636.   2954,  2957,  2959,  2973,  2975,  2979,  2981,  2985,  2988,  2994,
  637.   3000,  3003,  3005,  3007,  3009,  3013,  3017,  3021,  3024,  3029,
  638.   3032,  3034,  3036,  3038,  3040,  3042,  3044,  3046,  3050,  3054,
  639.   3058,  3062,  3063,  3065,  3067,  3069,  3071,  3073,  3075,  3077,
  640.   3079,  3087,  3089,  3090,  3091,  3094,  3101,  3109,  3117,  3119,
  641.   3124,  3126,  3129,  3143,  3146,  3149,  3153,  3156,  3160,  3162,
  642.   3165,  3169,  3172,  3175,  3179,  3192,  3195,  3197,  3198,  3204,
  643.   3209,  3211,  3214,  3218,  3221,  3227,  3238,  3242,  3245,  3249,
  644.   3262,  3270,  3274,  3275,  3300,  3300,  3332,  3332,  3348,  3348,
  645.   3352,  3356,  3359,  3364,  3371,  3380,  3389,  3398,  3401,  3407,
  646.   3409,  3413,  3415,  3418,  3422,  3425,  3428,  3430,  3433,  3435,
  647.   3437,  3440,  3453,  3458,  3466,  3468,  3472,  3475,  3476,  3481,
  648.   3485,  3489,  3492,  3493,  3499,  3501,  3504,  3506,  3510,  3515,
  649.   3518,  3528,  3535,  3536,  3543,  3549,  3554,  3558,  3563,  3570,
  650.   3574,  3578,  3583,  3594,  3608,  3611,  3613,  3615,  3617,  3621,
  651.   3623,  3631,  3648,  3650,  3652,  3654,  3656,  3660,  3665,  3667,
  652.   3670,  3692,  3698,  3705,  3708,  3710,  3714,  3719,  3721,  3728,
  653.   3731,  3733,  3735,  3741,  3745,  3748,  3750,  3752,  3754,  3756,
  654.   3758,  3760,  3762,  3764,  3766,  3768,  3770,  3772,  3774,  3776,
  655.   3778,  3780,  3782,  3784,  3786,  3788,  3790,  3792,  3794,  3796,
  656.   3798,  3800,  3802,  3804,  3806,  3808,  3810,  3813,  3815
  657. };
  658.  
  659. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  660. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  661. "ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
  662. "RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
  663. "CLASSOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE",
  664. "NEW","OVERLOAD","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","NAMESPACE","TYPENAME_KEYWORD",
  665. "USING","LEFT_RIGHT","TEMPLATE","TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST",
  666. "CONST_CAST","SCOPE","EMPTY","PTYPENAME","NSNAME","'{'","','","';'","THROW",
  667. "':'","ASSIGN","'='","'?'","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX","EQCOMPARE",
  668. "ARITHCOMPARE","'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR",
  669. "DOT_STAR","UNARY","PLUSPLUS","MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN",
  670. "POINTSAT","'.'","'('","'['","TRY","CATCH","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL",
  671. "EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN",
  672. "PTYPENAME_DEFN","END_OF_LINE","END_OF_SAVED_INPUT","')'","'}'","'!'","']'",
  673. "program","extdefs","@1","extdefs_opt",".hush_warning",".warning_ok","asm_keyword",
  674. "lang_extdef","@2","extdef","@3","@4","using_decl","any_id","extern_lang_string",
  675. "template_header","@5","template_parm_list","template_type_parm","template_parm",
  676. "overloaddef","ov_identifiers","template_def","@6","@7","@8","@9","fn_tmpl_end",
  677. "datadef","fndef","fn.def1","fn.def2","return_id","return_init","base_init",
  678. ".set_base_init","member_init_list","member_init","identifier","notype_identifier",
  679. "identifier_defn","explicit_instantiation","template_type","template_type_name",
  680. "tmpl.2","template_arg_list","template_arg","template_instantiate_once","@10",
  681. "template_instantiation","template_instantiate_some","unop","expr","paren_expr_or_null",
  682. "paren_cond_or_null","xcond","condition","@11","compstmtend","already_scoped_stmt",
  683. "nontrivial_exprlist","nonnull_exprlist","unary_expr","@12","new_placement",
  684. "new_initializer","regcast_or_absdcl","cast_expr","sub_cast_expr","expr_no_commas",
  685. "notype_unqualified_id","unqualified_id","expr_or_declarator","direct_notype_declarator",
  686. "primary","@13","@14","new","delete","boolean.literal","string","nodecls","object",
  687. "setattrs","decl","declarator","fcast_or_absdcl","type_id","typed_declspecs",
  688. "typed_declspecs1","reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals",
  689. "typespec","typespecqual_reserved","initdecls","notype_initdecls","nomods_initdecls",
  690. "maybeasm","initdcl0","@15","initdcl","@16","notype_initdcl0","@17","nomods_initdcl0",
  691. "@18","maybe_attribute","attributes","attribute","attribute_list","attrib","any_word",
  692. "identifiers_or_typenames","maybe_init","init","initlist","structsp","@19","@20",
  693. "maybecomma","maybecomma_warn","aggr","specialization","named_class_head_sans_basetype",
  694. "named_class_head_sans_basetype_defn","do_xref_defn","named_class_head","unnamed_class_head",
  695. "class_head","maybe_base_class_list","base_class_list","base_class","base_class.1",
  696. "base_class_access_list","left_curly","opt.component_decl_list","component_decl_list",
  697. "component_decl","component_decl_1","components","notype_components","component_declarator0",
  698. "component_declarator","after_type_component_declarator0","notype_component_declarator0",
  699. "after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
  700. "new_type_id","type_quals","nonempty_type_quals","suspend_mom","nonmomentary_expr",
  701. "maybe_parmlist","after_type_declarator","qualified_type_name","nested_type",
  702. "direct_after_type_declarator","notype_declarator","complex_notype_declarator",
  703. "complex_direct_notype_declarator","qualified_id","notype_qualified_id","overqualified_id",
  704. "functional_cast","type_name","nested_name_specifier","nested_name_specifier_1",
  705. "complete_type_name","complex_type_name","ptr_to_mem","global_scope","new_declarator",
  706. "direct_new_declarator","absdcl","direct_abstract_declarator","stmts","errstmt",
  707. ".pushlevel",".poplevel","maybe_label_decls","label_decls","label_decl","compstmt_or_error",
  708. "compstmt","simple_if","@21","@22","implicitly_scoped_stmt","stmt","simple_stmt",
  709. "@23","@24","@25","@26","@27","@28","@29","@30","@31","@32","@33","@34","@35",
  710. "@36","@37","try_block","@38","@39","handler_seq","@40","type_specifier_seq",
  711. "handler_args","label_colon","for.init.statement","maybe_type_qual","xexpr",
  712. "asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist",
  713. "complex_parmlist","parms","parms_comma","named_parm","full_parm","parm","see_typename",
  714. "bad_parm","exception_specification_opt","ansi_raise_identifier","ansi_raise_identifiers",
  715. "conversion_declarator","operator","operator_name",""
  716. };
  717. #endif
  718.  
  719. static const short yyr1[] = {     0,
  720.    111,   111,   113,   112,   112,   114,   114,   115,   116,   117,
  721.    117,   119,   118,   120,   120,   120,   120,   120,   120,   120,
  722.    120,   121,   120,   122,   120,   120,   120,   120,   123,   123,
  723.    123,   124,   124,   124,   124,   125,   125,   127,   126,   128,
  724.    128,   129,   129,   130,   130,   130,   131,   132,   132,   134,
  725.    133,   135,   133,   136,   133,   137,   133,   133,   133,   133,
  726.    133,   133,   133,   133,   138,   138,   138,   138,   138,   139,
  727.    139,   139,   139,   139,   139,   139,   139,   139,   139,   139,
  728.    140,   140,   140,   140,   140,   140,   140,   140,   141,   141,
  729.    141,   141,   142,   142,   142,   142,   142,   143,   144,   144,
  730.    144,   145,   146,   147,   147,   147,   147,   148,   148,   148,
  731.    148,   148,   148,   148,   148,   149,   149,   149,   149,   150,
  732.    150,   150,   151,   151,   151,   152,   152,   152,   152,   153,
  733.    154,   154,   154,   155,   156,   156,   157,   157,   159,   158,
  734.    160,   160,   161,   161,   162,   162,   162,   162,   162,   163,
  735.    163,   164,   164,   165,   165,   166,   166,   166,   168,   167,
  736.    167,   169,   169,   169,   169,   170,   170,   171,   171,   171,
  737.    171,   172,   172,   173,   174,   173,   173,   173,   173,   173,
  738.    173,   173,   173,   173,   173,   173,   173,   173,   173,   173,
  739.    173,   173,   173,   173,   173,   173,   175,   175,   176,   176,
  740.    176,   176,   177,   177,   178,   178,   178,   179,   179,   179,
  741.    179,   180,   180,   180,   180,   180,   180,   180,   180,   180,
  742.    180,   180,   180,   180,   180,   180,   180,   180,   180,   180,
  743.    180,   180,   180,   180,   180,   180,   181,   181,   181,   181,
  744.    181,   182,   182,   183,   183,   183,   183,   184,   184,   184,
  745.    185,   185,   185,   185,   185,   185,   185,   186,   185,   187,
  746.    185,   185,   185,   185,   185,   185,   185,   185,   185,   185,
  747.    185,   185,   185,   185,   185,   185,   185,   185,   185,   185,
  748.    185,   185,   185,   185,   185,   185,   185,   185,   188,   188,
  749.    189,   189,   190,   190,   191,   191,   192,   193,   193,   194,
  750.    195,   195,   195,   195,   195,   195,   195,   196,   196,   197,
  751.    197,   198,   198,   198,   198,   198,   199,   199,   200,   200,
  752.    200,   200,   200,   200,   201,   201,   201,   201,   201,   202,
  753.    202,   202,   202,   202,   202,   203,   203,   203,   203,   204,
  754.    204,   205,   205,   205,   205,   205,   205,   205,   206,   206,
  755.    206,   207,   207,   208,   208,   209,   209,   210,   210,   212,
  756.    211,   211,   214,   213,   213,   216,   215,   215,   218,   217,
  757.    217,   219,   219,   220,   220,   221,   222,   222,   223,   223,
  758.    223,   223,   223,   224,   224,   224,   224,   225,   225,   226,
  759.    226,   227,   227,   227,   227,   227,   228,   228,   228,   228,
  760.    228,   228,   230,   229,   229,   231,   229,   229,   229,   229,
  761.    229,   229,   229,   232,   232,   233,   233,   234,   234,   234,
  762.    234,   234,   235,   236,   236,   236,   236,   237,   237,   237,
  763.    238,   239,   239,   240,   241,   241,   242,   242,   242,   243,
  764.    243,   244,   244,   245,   245,   245,   246,   246,   246,   246,
  765.    247,   248,   248,   248,   248,   249,   249,   250,   250,   250,
  766.    250,   250,   251,   251,   251,   251,   251,   251,   251,   251,
  767.    252,   252,   252,   253,   253,   253,   254,   254,   255,   255,
  768.    256,   256,   257,   257,   257,   258,   258,   259,   259,   259,
  769.    260,   260,   261,   261,   262,   262,   262,   263,   263,   264,
  770.    264,   265,   266,   267,   267,   267,   267,   268,   268,   268,
  771.    268,   268,   268,   269,   269,   270,   271,   271,   271,   271,
  772.    271,   271,   272,   272,   272,   272,   272,   272,   273,   273,
  773.    273,   273,   273,   273,   274,   274,   274,   274,   274,   275,
  774.    276,   277,   277,   278,   278,   278,   279,   279,   280,   280,
  775.    281,   281,   281,   282,   282,   283,   283,   284,   284,   285,
  776.    286,   286,   286,   286,   286,   286,   286,   287,   287,   288,
  777.    288,   288,   288,   288,   288,   288,   288,   288,   288,   288,
  778.    289,   289,   289,   289,   289,   289,   289,   289,   289,   289,
  779.    289,   290,   290,   290,   290,   291,   292,   293,   294,   294,
  780.    295,   295,   296,   297,   297,   298,   300,   301,   299,   302,
  781.    302,   303,   303,   304,   304,   305,   306,   304,   304,   307,
  782.    308,   304,   309,   310,   304,   311,   312,   313,   314,   304,
  783.    315,   316,   304,   317,   304,   318,   304,   319,   304,   304,
  784.    304,   304,   304,   304,   304,   304,   304,   304,   304,   304,
  785.    304,   304,   304,   321,   322,   320,   323,   324,   323,   325,
  786.    325,   326,   326,   327,   327,   327,   328,   328,   328,   329,
  787.    329,   330,   330,   330,   331,   331,   332,   332,   333,   334,
  788.    334,   335,   335,   335,   336,   336,   336,   336,   336,   336,
  789.    336,   336,   336,   336,   337,   337,   337,   337,   337,   338,
  790.    338,   339,   339,   339,   339,   339,   339,   340,   341,   341,
  791.    342,   343,   343,   344,   344,   344,   345,   346,   346,   347,
  792.    347,   347,   347,   348,   349,   349,   349,   349,   349,   349,
  793.    349,   349,   349,   349,   349,   349,   349,   349,   349,   349,
  794.    349,   349,   349,   349,   349,   349,   349,   349,   349,   349,
  795.    349,   349,   349,   349,   349,   349,   349,   349,   349
  796. };
  797.  
  798. static const short yyr2[] = {     0,
  799.      0,     1,     0,     2,     2,     1,     0,     0,     0,     1,
  800.      1,     0,     2,     1,     1,     1,     1,     5,     4,     4,
  801.      4,     0,     6,     0,     5,     5,     2,     4,     2,     3,
  802.      3,     1,     1,     2,     2,     1,     2,     0,     5,     1,
  803.      3,     1,     2,     1,     3,     1,     3,     1,     3,     0,
  804.      5,     0,     5,     0,     5,     0,     5,     3,     3,     6,
  805.      7,     4,     3,     3,     1,     1,     1,     1,     1,     2,
  806.      3,     3,     3,     3,     2,     2,     2,     2,     2,     1,
  807.      3,     4,     3,     5,     4,     3,     3,     2,     3,     3,
  808.      2,     1,     6,     4,     3,     3,     2,     2,     2,     4,
  809.      2,     3,     0,     0,     1,     3,     2,     3,     1,     4,
  810.      2,     4,     2,     4,     2,     1,     1,     1,     1,     1,
  811.      1,     1,     1,     1,     1,     3,     3,     4,     4,     3,
  812.      4,     3,     4,     0,     1,     3,     1,     1,     0,     6,
  813.      0,     1,     0,     2,     1,     1,     1,     1,     1,     1,
  814.      1,     1,     3,     1,     3,     0,     1,     1,     0,     8,
  815.      1,     1,     3,     4,     3,     2,     1,     3,     3,     3,
  816.      3,     1,     1,     1,     0,     3,     2,     2,     2,     2,
  817.      2,     2,     4,     2,     4,     2,     3,     3,     4,     4,
  818.      5,     5,     6,     2,     4,     5,     3,     3,     3,     1,
  819.      3,     2,     3,     4,     1,     2,     5,     1,     4,     4,
  820.      4,     1,     3,     3,     3,     3,     3,     3,     3,     3,
  821.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  822.      3,     5,     3,     3,     1,     2,     3,     1,     1,     1,
  823.      1,     1,     1,     1,     2,     2,     3,     1,     1,     3,
  824.      1,     1,     1,     1,     3,     3,     3,     0,     4,     0,
  825.      6,     2,     4,     2,     2,     1,     4,     1,     7,     7,
  826.      7,     7,     4,     4,     2,     2,     1,     4,     2,     2,
  827.      2,     5,     3,     5,     3,     4,     6,     2,     1,     2,
  828.      1,     2,     1,     1,     1,     2,     0,     2,     2,     0,
  829.      3,     3,     3,     3,     3,     2,     2,     1,     1,     1,
  830.      2,     2,     2,     2,     1,     1,     1,     1,     2,     2,
  831.      3,     3,     3,     4,     1,     2,     2,     3,     2,     1,
  832.      1,     2,     2,     3,     2,     1,     2,     2,     3,     1,
  833.      2,     1,     1,     1,     4,     4,     4,     4,     1,     1,
  834.      1,     1,     3,     1,     3,     1,     3,     0,     4,     0,
  835.      7,     4,     0,     7,     4,     0,     7,     4,     0,     7,
  836.      4,     0,     1,     1,     2,     6,     1,     3,     0,     1,
  837.      4,     6,     4,     1,     1,     1,     1,     1,     3,     0,
  838.      2,     1,     2,     3,     4,     1,     1,     3,     4,     6,
  839.      3,     5,     0,     7,     4,     0,     6,     3,     2,     2,
  840.      2,     4,     1,     0,     1,     0,     1,     1,     2,     2,
  841.      2,     2,     3,     2,     2,     2,     1,     2,     3,     3,
  842.      0,     1,     3,     2,     1,     1,     0,     1,     2,     1,
  843.      3,     1,     2,     1,     4,     4,     1,     1,     2,     2,
  844.      1,     0,     1,     4,     3,     1,     2,     2,     2,     2,
  845.      2,     1,     2,     2,     5,     2,     1,     9,     7,     1,
  846.      0,     1,     3,     0,     1,     3,     1,     1,     1,     1,
  847.      5,     4,     5,     4,     3,     5,     4,     5,     4,     3,
  848.      1,     3,     1,     3,     2,     1,     6,     0,     2,     1,
  849.      2,     0,     2,     4,     4,     2,     4,     3,     3,     2,
  850.      2,     3,     1,     1,     1,     2,     3,     4,     3,     3,
  851.      2,     1,     3,     3,     2,     2,     3,     1,     3,     3,
  852.      2,     2,     3,     1,     3,     3,     4,     3,     1,     2,
  853.      2,     1,     2,     4,     4,     2,     1,     1,     1,     2,
  854.      2,     2,     2,     1,     2,     1,     2,     2,     3,     1,
  855.      3,     2,     3,     2,     2,     3,     1,     3,     4,     3,
  856.      2,     2,     1,     3,     2,     2,     1,     2,     3,     1,
  857.      3,     1,     5,     3,     4,     3,     4,     2,     2,     3,
  858.      2,     1,     1,     2,     2,     2,     0,     0,     0,     1,
  859.      1,     2,     3,     1,     2,     4,     0,     0,     6,     1,
  860.      3,     1,     1,     1,     2,     0,     0,     6,     1,     0,
  861.      0,     7,     0,     0,     7,     0,     0,     0,     0,    14,
  862.      0,     0,     9,     0,     5,     0,     7,     0,     4,     2,
  863.      2,     2,     3,     6,     8,    10,    12,     4,     3,     2,
  864.      2,     1,     1,     0,     0,     5,     0,     0,     7,     1,
  865.      1,     3,     3,     2,     2,     2,     2,     1,     2,     0,
  866.      1,     0,     1,     1,     0,     1,     1,     3,     4,     1,
  867.      3,     0,     1,     1,     1,     2,     2,     2,     1,     1,
  868.      2,     2,     2,     2,     1,     3,     2,     2,     4,     2,
  869.      2,     2,     2,     2,     2,     1,     2,     2,     1,     1,
  870.      0,     0,     1,     0,     4,     2,     1,     1,     3,     0,
  871.      3,     3,     3,     1,     2,     2,     2,     2,     2,     2,
  872.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  873.      2,     2,     2,     2,     2,     2,     2,     3,     2,     2,
  874.      2,     2,     3,     2,     2,     4,     4,     3,     2
  875. };
  876.  
  877. static const short yydefact[] = {     3,
  878.     12,    12,     5,     0,     4,     0,   239,   547,   331,   343,
  879.    500,     0,    10,    11,     0,     0,     0,   418,     0,   724,
  880.      0,     0,     0,     0,   560,   240,   241,    80,     0,     0,
  881.    711,     0,    92,    36,     0,    13,     0,     8,     0,    17,
  882.     16,    15,    14,   297,     0,   548,   134,   249,   528,     0,
  883.    318,     0,   317,   336,     0,   356,   300,   374,   342,     0,
  884.    427,   432,   431,   436,   435,   413,   330,   554,   515,     0,
  885.    248,   539,   514,     0,   549,   344,   498,     0,     0,   238,
  886.     78,    79,   551,     0,     0,   116,   117,   118,   119,   406,
  887.    409,     0,   556,     0,   410,     0,     0,     0,     0,    48,
  888.      0,   117,   118,   119,    24,     0,     0,     0,     0,   411,
  889.      0,    29,     0,     0,   331,    38,     0,     0,   427,     0,
  890.      0,   552,     0,   526,     0,     0,     0,   525,     0,     0,
  891.      0,     0,   249,     0,   502,     0,   248,   498,     0,    27,
  892.      3,    37,     0,     0,     0,     0,   432,   431,   714,     0,
  893.    103,   390,   297,     0,     0,    76,   553,   141,   502,     0,
  894.    498,    77,     0,     0,     0,     0,     0,   352,   308,   513,
  895.    309,   522,     0,   498,   333,   332,    75,   319,     0,   354,
  896.    300,     0,   325,   349,   350,   320,   338,   340,   300,   351,
  897.      0,    70,   335,   375,   419,   420,   421,   422,   434,   124,
  898.    123,   125,   424,   428,   426,   134,   425,   437,   451,     0,
  899.    501,   337,    88,     0,    91,   558,   541,   516,   550,     0,
  900.    555,     0,   759,   755,   754,   752,   734,   739,   740,     0,
  901.    746,   745,   731,   732,   730,   749,   738,   735,   736,   737,
  902.    741,   742,   728,   729,   725,   726,   727,   751,   743,   744,
  903.    733,   750,     0,   747,   660,   336,   661,   720,   500,   252,
  904.    295,     0,     0,     0,     0,   175,   291,   289,   266,   293,
  905.    294,     0,     0,     0,     0,     0,   235,     0,     0,   146,
  906.    145,     0,   147,   148,     0,     0,   149,     0,   135,     0,
  907.    208,     0,   212,   205,   138,   251,   174,     0,     0,   253,
  908.    254,     0,   137,   315,   336,   316,   542,   277,   268,     0,
  909.      0,     0,   427,   408,     0,   403,   557,     0,   150,   151,
  910.      0,     0,     0,   379,     0,    47,     3,    22,     0,   243,
  911.      0,   242,    32,    33,     0,   540,    31,    30,     0,   127,
  912.    437,   142,   126,   132,     0,   524,     0,   523,   237,   246,
  913.      0,   532,   245,     0,   531,     0,   250,   536,     0,     0,
  914.     12,     0,     0,     9,     9,    64,    63,   714,     0,    50,
  915.     58,    54,    52,    59,    56,   358,    98,   104,   101,     0,
  916.      0,    99,   297,     0,     0,     0,   597,    81,   604,    83,
  917.    130,   538,     0,     0,   506,     0,   535,     0,   511,     0,
  918.    510,     0,     0,     0,     0,   498,    86,    74,    89,     0,
  919.     73,   502,   498,   521,     0,   322,   323,     0,    71,   334,
  920.     87,    72,    90,   327,   326,   300,   321,   341,   329,   714,
  921.    357,   429,   423,   430,   438,   433,   467,     0,   462,     0,
  922.    470,     0,   471,   474,     0,     0,   456,     0,   714,   339,
  923.    716,     0,     0,   372,   499,   527,   559,     0,     0,   748,
  924.    753,   338,   498,   498,     0,   498,   758,     0,     0,     0,
  925.    182,     0,     0,   184,     0,     0,     0,     0,     0,     0,
  926.      0,     0,   236,   181,   178,   177,   179,     0,     0,     0,
  927.      0,     0,   251,     0,     0,     0,     0,   133,   180,     0,
  928.      0,   206,     0,     0,     0,     0,     0,     0,     0,     0,
  929.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  930.      0,     0,     0,     0,   262,   264,   265,   299,   298,     0,
  931.      0,     0,     0,     0,   186,   496,     0,   194,   296,   288,
  932.      0,   711,   280,   281,     0,     0,   310,   577,   573,   582,
  933.      0,   502,   498,   498,   498,   312,   580,     0,   546,   314,
  934.      0,   313,   279,     0,   275,   290,   292,   543,     0,   276,
  935.    129,   128,   493,   416,   491,   405,     0,   345,     0,     0,
  936.    346,   347,   348,   385,   386,   387,   384,     0,   377,   380,
  937.     49,     0,     3,     0,    28,    35,    34,     0,    44,    40,
  938.    710,   706,     0,   315,   336,    42,   316,   709,    46,   390,
  939.    139,   131,   530,   529,   250,   533,     0,    19,    21,    20,
  940.    358,    69,    65,    67,    66,    68,    62,     0,     0,     0,
  941.      0,   372,   120,   109,   121,   122,     0,   102,   105,     0,
  942.      0,     0,   396,     0,   392,   391,   173,     0,   172,     0,
  943.     82,    85,   605,   599,   503,   537,     0,   689,   690,     0,
  944.    684,   336,     0,   683,   685,   712,   695,     0,   509,   508,
  945.      0,     0,   520,     0,   372,   353,   519,     0,   517,   512,
  946.    324,   355,   372,   328,   358,   448,     0,   447,   439,   440,
  947.    442,     0,   444,   466,   461,   460,   239,   547,   498,     0,
  948.    682,   714,   463,   472,   477,   478,   714,   714,   464,   475,
  949.    714,     0,   412,   457,   458,   459,   358,   717,   336,   718,
  950.      0,     0,   371,   373,   757,   756,   720,   720,   720,     0,
  951.      0,     0,   546,     0,     0,   547,     0,   176,     0,     0,
  952.      0,     0,     0,     0,   257,     0,   255,   256,     0,   203,
  953.    136,   239,   547,   240,   241,     0,     0,   397,   414,     0,
  954.    234,   233,   674,   673,     0,   231,   230,   228,   229,   227,
  955.    226,   225,   222,   223,   224,   220,   221,   215,   216,   217,
  956.    218,   219,   213,   214,     0,     0,     0,     0,     0,     0,
  957.    188,   200,     0,     0,   187,   498,   498,     0,   498,   495,
  958.    567,     0,     0,     0,     0,   283,     0,   285,     0,   576,
  959.    575,   572,   571,   710,     0,     0,   591,     0,     0,   588,
  960.    311,   589,   578,   498,   682,   502,   577,   573,     0,     0,
  961.    498,     0,     0,     0,     0,   417,     0,   416,   171,   170,
  962.    169,   168,   379,     0,     0,    25,     0,    26,     0,    39,
  963.      0,   577,   573,     0,   702,   498,   705,   707,   703,   704,
  964.    424,   708,     0,    18,   372,    51,    55,    53,    57,     0,
  965.      0,   107,     0,   111,     0,   115,     0,   113,     0,   393,
  966.      0,   100,    84,     0,   162,   598,     0,   600,   601,   507,
  967.    504,   688,   701,   694,   692,     0,   505,   687,   700,   693,
  968.    691,   686,   713,   697,   698,     0,   362,   518,   368,   372,
  969.      0,     0,   450,   449,   443,     0,     0,   714,   372,   514,
  970.      0,     0,    95,     0,   358,   358,     0,   358,     0,   372,
  971.      0,   715,     0,   369,   722,   721,   723,   267,   183,   185,
  972.    209,   211,   210,   273,   274,     0,     0,     0,     0,   256,
  973.    259,     0,     0,     0,     0,   204,     0,   260,   263,   198,
  974.    197,   190,     0,   189,   202,     0,     0,   564,   562,     0,
  975.    565,   502,   195,     0,     0,   286,     0,     0,   574,   570,
  976.    581,   498,   590,   579,   584,     0,   586,     0,   544,   545,
  977.      0,   278,   494,   492,   407,     0,   378,   376,   239,     0,
  978.     23,    41,    45,   576,   572,   577,   573,     0,   498,   578,
  979.      0,     0,    60,   108,   106,     0,     0,     0,     0,   394,
  980.    388,     0,   606,     0,   239,   547,   607,   620,   623,   626,
  981.    597,     0,     0,     0,     0,     0,     0,   240,   652,   654,
  982.    670,     0,   614,     0,     0,   336,     0,   593,   612,   619,
  983.    592,   613,   653,     0,   602,   577,   573,     0,   251,     0,
  984.    542,     0,   696,   360,   366,   365,     0,     0,   441,   372,
  985.    372,   358,   485,   516,   498,   239,   547,     0,   473,   479,
  986.    480,   714,   714,   372,   372,   476,     0,   390,   719,   359,
  987.      0,     0,     0,     0,     0,     0,   401,     0,     0,   398,
  988.    207,   232,   143,     0,   191,   192,   199,   201,   563,   561,
  989.    568,   566,     0,   196,     0,   282,   284,   587,   498,   585,
  990.    404,     0,   381,   383,   576,   572,   578,     0,    61,   110,
  991.    114,   112,   395,     0,   603,   596,   165,   664,   666,   597,
  992.    597,   597,     0,     0,     0,   638,   640,   641,   642,     0,
  993.      0,     0,   665,     0,   671,     0,   615,   306,   714,     0,
  994.    307,     0,   714,     0,   714,     0,     0,   163,   595,   594,
  995.    616,   651,   650,     0,   545,   699,     0,     0,   363,   445,
  996.    446,   484,   482,   372,   714,     0,     0,   372,   358,   358,
  997.    390,   390,   465,   370,     0,     0,     0,     0,   399,     0,
  998.      0,   143,   261,     0,   193,   569,   287,   583,     0,   140,
  999.    389,     0,     0,     0,   610,     0,     0,     0,     0,   634,
  1000.      0,   643,     0,   649,   655,     0,   302,   358,   304,   305,
  1001.    358,     0,     0,     0,   301,   303,   164,   597,   256,   361,
  1002.    367,     0,   390,   358,   372,   372,   490,   372,   372,   481,
  1003.    483,   269,   270,   271,   272,     0,   402,   144,   497,   382,
  1004.    154,     0,   608,   621,   598,   624,   599,   668,   627,     0,
  1005.    161,     0,   336,     0,     0,     0,   639,   648,   657,     0,
  1006.    617,   364,   469,   372,   489,   487,   390,   390,   400,     0,
  1007.    597,     0,   611,     0,   669,   597,   667,   631,   714,   636,
  1008.    635,   656,   675,     0,   598,   390,   486,   488,   155,   609,
  1009.    599,   598,   167,   152,     0,     0,     0,   597,   358,     0,
  1010.    597,     0,     0,   676,   677,   644,   618,   468,   166,   622,
  1011.      0,   625,   158,     0,   157,   632,   372,   637,     0,     0,
  1012.    675,     0,     0,   153,   628,   598,     0,     0,     0,     0,
  1013.      0,   645,   678,     0,   633,   159,     0,     0,   658,   679,
  1014.      0,     0,     0,     0,   662,   663,   598,   680,     0,   646,
  1015.    629,   160,   659,     0,     0,     0,   681,   647,   598,   630,
  1016.      0,     0,     0
  1017. };
  1018.  
  1019. static const short yydefgoto[] = {  1381,
  1020.    361,     2,   362,   143,   619,   453,     3,     4,    36,   593,
  1021.    327,   441,   331,    38,    39,   339,   598,   599,   600,    40,
  1022.    101,    41,   628,   630,   629,   631,   627,    42,    43,    44,
  1023.    442,   152,   153,   154,   378,   638,   639,   573,   640,   204,
  1024.     45,    46,    47,   158,   288,   289,   342,   863,   343,  1203,
  1025.    290,  1042,  1316,  1263,  1334,  1272,  1364,   886,  1312,   319,
  1026.    830,   291,   477,   534,   795,   292,   293,   294,   320,   296,
  1027.    333,   350,    49,   297,   495,  1103,   298,   299,   300,   301,
  1028.    155,   302,   193,  1043,   430,   554,   814,  1044,    51,   186,
  1029.    603,   304,   187,   472,   188,   167,   179,    55,   675,   168,
  1030.   1177,   431,  1242,   180,  1178,    56,  1091,   723,    57,    58,
  1031.    588,   589,   590,  1022,   382,   758,   759,    59,   577,   315,
  1032.    955,   837,    60,    61,    62,    63,   208,    64,    65,    66,
  1033.    436,   689,   690,   691,   692,   210,   445,   446,   447,   448,
  1034.    703,   709,   704,  1079,   705,   706,  1080,  1081,   574,   575,
  1035.    535,   820,   306,   393,   394,   161,   169,    68,    69,   170,
  1036.    171,   136,    71,   112,   307,   308,   309,    73,   310,    75,
  1037.     76,   207,    77,   311,   800,   801,   815,   557,  1047,  1048,
  1038.   1214,  1023,   887,   888,   889,   388,  1049,  1050,  1140,  1291,
  1039.   1216,  1051,  1052,  1238,  1305,  1141,  1292,  1142,  1294,  1143,
  1040.   1296,  1354,  1376,  1318,  1346,  1276,  1320,  1221,  1053,  1154,
  1041.   1279,  1302,  1367,  1274,  1349,  1054,  1269,  1156,   765,  1323,
  1042.   1324,  1325,  1369,   663,   816,   665,   666,   667,   609,   668,
  1043.    129,   905,  1228,   720,   721,   467,    79,    80
  1044. };
  1045.  
  1046. static const short yypact[] = {   116,
  1047.    140,-32768,-32768,  8889,-32768,    43,-32768,    55,   175,-32768,
  1048. -32768,   690,-32768,-32768,   154,   164,   191,-32768,   286,-32768,
  1049.    708,   379,   492,  3617,-32768,   238,   312,-32768,   117,   117,
  1050. -32768,  3654,-32768,-32768,   315,-32768,   359,   198,  8935,-32768,
  1051. -32768,-32768,-32768,   480,   365,   428,-32768,-32768,   307,   739,
  1052. -32768,  9007,-32768,  1394,   339,-32768,   488,-32768,-32768,  1356,
  1053. -32768,-32768,-32768,-32768,-32768,   485,  2570,-32768,-32768,  3137,
  1054. -32768,-32768,-32768,   561,-32768,-32768,-32768,   229,  5784,-32768,
  1055. -32768,-32768,-32768,  7738,  3961,-32768,    55,   238,   312,   429,
  1056.    494,   428,-32768,   229,-32768,   229,  7738,  7738,   478,-32768,
  1057.    586,-32768,-32768,-32768,-32768,   516,    55,   238,   312,-32768,
  1058.    578,-32768,   722,   722,-32768,-32768,  3894,  4184,   221,   229,
  1059.   7562,-32768,   931,-32768,   573,   452,   931,-32768,   316,  2015,
  1060.   2015,  3654,   471,   498,   491,   506,   529,-32768,   601,-32768,
  1061.    547,-32768,  5135,    78,  3894,  9246,   727,   934,   606,   677,
  1062. -32768,   264,   676,   118,   118,-32768,-32768,   623,   603,    53,
  1063. -32768,-32768,  2771,  2771,  4009,  3310,   612,-32768,-32768,   554,
  1064. -32768,-32768,   561,-32768,-32768,-32768,-32768,  1394,   648,-32768,
  1065.    488,  3744,-32768,-32768,-32768,  1441,  1394,-32768,   488,-32768,
  1066.   3894,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1067. -32768,-32768,-32768,-32768,   428,   948,-32768,   665,-32768,  2817,
  1068. -32768,   799,-32768,   109,  1145,-32768,-32768,-32768,-32768,  3000,
  1069. -32768,   284,-32768,   639,   655,-32768,-32768,-32768,-32768,   696,
  1070. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1071. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1072. -32768,-32768,   652,-32768,-32768,   799,  2570,   373,   659,-32768,
  1073. -32768,  8710,  8798,   674,   680,-32768,-32768,-32768,-32768,-32768,
  1074. -32768,   701,   702,   729,   733,   738,  7826,   316,  8446,-32768,
  1075. -32768,  8446,-32768,-32768,  8446,  5873,-32768,   482,-32768,  8446,
  1076. -32768,  7914,-32768,-32768,  4074,-32768,   737,  1489,  8002,-32768,
  1077.    792,   349,-32768,  1923,  2129,  2624,-32768,   168,-32768,   907,
  1078.   1124,  3894,   221,-32768,   316,   706,-32768,   715,   778,  9277,
  1079.    741,   748,   751,   858,   857,-32768,   547,-32768,   578,    55,
  1080.    810,-32768,-32768,-32768,   722,-32768,-32768,-32768,  3961,-32768,
  1081.    665,-32768,-32768,-32768,   520,-32768,   304,-32768,-32768,-32768,
  1082.    931,-32768,-32768,   931,-32768,   768,-32768,-32768,  3000,    75,
  1083.    774,   780,  3961,-32768,-32768,-32768,-32768,   606,  1137,-32768,
  1084. -32768,-32768,-32768,-32768,-32768,   826,-32768,   108,-32768,  5961,
  1085.   7826,-32768,-32768,   118,   118,   836,-32768,-32768,-32768,-32768,
  1086. -32768,-32768,  7826,   795,-32768,  3806,   901,  3182,-32768,  3182,
  1087. -32768,  3217,  3217,  4009,   805,-32768,-32768,-32768,  1145,  3894,
  1088. -32768,   812,-32768,-32768,  3309,  1441,  1394,  3894,-32768,-32768,
  1089. -32768,-32768,  1145,-32768,-32768,   488,  1441,-32768,-32768,   606,
  1090. -32768,-32768,-32768,-32768,   660,-32768,-32768,   379,-32768,  7826,
  1091. -32768,   582,  2244,  9085,    62,  4626,-32768,    85,   606,   799,
  1092. -32768,  4244,   838,   488,-32768,-32768,-32768,   814,   827,-32768,
  1093. -32768,   799,-32768,-32768,   322,-32768,-32768,  7826,   659,  5873,
  1094. -32768,   407,  5873,-32768,  7826,  8094,  8446,  7738,  4244,  4244,
  1095.   4244,  4244,  9345,-32768,-32768,-32768,-32768,   833,  8534,  8534,
  1096.   5873,   835,   471,   840,   836,   844,  7738,-32768,-32768,  5719,
  1097.   5873,-32768,  7826,  7826,  6049,  7826,  7826,  7826,  7826,  7826,
  1098.   7826,  7826,  7826,  7826,  7826,  7826,  7826,  7826,  7826,  7826,
  1099.   7826,  7826,  7826,  7826,-32768,-32768,-32768,-32768,-32768,  7826,
  1100.   7826,  7826,  7738,  2439,   564,   288,  6577,-32768,-32768,-32768,
  1101.    906,   956,   417,   460,   914,   452,-32768,  1552,  1552,-32768,
  1102.   4389,   855,   881,   950,-32768,-32768,   635,  7191,   424,-32768,
  1103.    361,-32768,-32768,  7826,-32768,-32768,-32768,-32768,    89,-32768,
  1104. -32768,-32768,   945,   961,-32768,-32768,   316,-32768,  6401,  6489,
  1105. -32768,-32768,-32768,-32768,-32768,-32768,-32768,    76,-32768,   929,
  1106. -32768,   915,   547,   973,-32768,-32768,-32768,   647,   970,-32768,
  1107. -32768,   779,  9246,   779,  2209,  1356,  8990,-32768,-32768,   972,
  1108. -32768,-32768,-32768,-32768,   930,-32768,   982,-32768,-32768,-32768,
  1109.    826,-32768,-32768,-32768,-32768,-32768,-32768,   986,  1003,  1005,
  1110.   1006,   488,-32768,-32768,   238,   312,  7826,  1008,-32768,   503,
  1111.    513,   544,-32768,  4911,  9345,-32768,   778,   962,  9277,   118,
  1112. -32768,-32768,-32768,    67,-32768,-32768,   963,-32768,-32768,   965,
  1113.    179,  3071,   967,-32768,   212,  9154,  1013,  1014,-32768,-32768,
  1114.   3182,  3182,-32768,  3309,   488,-32768,-32768,   969,   901,-32768,
  1115.   1441,-32768,   488,-32768,   826,-32768,   988,-32768,  1025,-32768,
  1116. -32768,  1118,-32768,  9345,-32768,-32768,  1023,   333,-32768,  7826,
  1117.   2482,   606,  1027,-32768,-32768,-32768,   637,   730,  1028,-32768,
  1118.    606,  1030,-32768,-32768,-32768,-32768,   828,-32768,  3548,-32768,
  1119.    137,   601,  1026,   488,-32768,-32768,   919,   919,   919,   987,
  1120.    991,  8182,   950,   994,   995,   372,  1001,-32768,  1002,  1004,
  1121.   1020,  1035,  1038,  1039,-32768,  1009,-32768,-32768,  1012,-32768,
  1122. -32768,  1062,   411,   418,   167,  7826,  1068,-32768,  1072,  1031,
  1123.   9345,  9345,-32768,-32768,  1070,  4504,  4285,  9361,  9376,  4475,
  1124.   4541,  3682,  1761,  1761,  1761,  1603,  1603,  1217,  1217,   796,
  1125.    796,   796,-32768,-32768,  1032,  1024,  1036,  1048,  1049,  4244,
  1126.    564,-32768,  5961,  7826,-32768,-32768,-32768,  7826,-32768,-32768,
  1127.   1051,  8446,  1053,  1058,  1117,-32768,  7826,-32768,  7826,  1756,
  1128. -32768,  1756,-32768,   157,  1075,  1076,-32768,  1057,  4244,   901,
  1129. -32768,   901,  1868,-32768,  1876,  1077,  7378,  7378,  5441,  1078,
  1130.   7914,  1079,  1124,  1081,  7826,   316,  1082,   961,-32768,  9345,
  1131. -32768,  9345,   858,  1084,  8270,-32768,  1088,-32768,  3961,-32768,
  1132.   2035,  1501,  1501,  1721,-32768,-32768,-32768,-32768,-32768,-32768,
  1133.     66,-32768,   485,-32768,   488,-32768,-32768,-32768,-32768,  1137,
  1134.   1091,-32768,   108,-32768,  7826,-32768,  7826,-32768,  7826,-32768,
  1135.     51,-32768,-32768,   316,-32768,-32768,  5348,  1172,-32768,-32768,
  1136. -32768,-32768,-32768,-32768,-32768,  7286,-32768,-32768,-32768,-32768,
  1137. -32768,-32768,-32768,-32768,  1143,  5961,  1144,-32768,  1147,   488,
  1138.   7738,   660,-32768,-32768,-32768,  7826,  7826,   100,  4808,-32768,
  1139.    561,  1108,-32768,  1096,   826,   826,  3382,   831,  6647,   488,
  1140.   4244,-32768,    81,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1141. -32768,-32768,-32768,-32768,-32768,  1123,  1127,  1129,  1130,   930,
  1142. -32768,  4960,  5961,  5065,  1116,-32768,  7826,-32768,-32768,-32768,
  1143. -32768,   595,  1119,-32768,-32768,  1120,    59,   244,   244,  1122,
  1144.    244,-32768,-32768,  8446,  1227,-32768,  1132,  1133,-32768,-32768,
  1145. -32768,-32768,-32768,-32768,   901,  1134,-32768,  1126,-32768,-32768,
  1146.    622,-32768,  9345,-32768,-32768,  1138,-32768,-32768,   158,  1146,
  1147. -32768,-32768,-32768,  1600,  1600,  2877,  2877,  1721,-32768,  2955,
  1148.   2817,  1137,-32768,-32768,-32768,  1152,  1153,  1154,  5631,-32768,
  1149. -32768,   837,-32768,   185,  1183,   683,-32768,-32768,-32768,-32768,
  1150. -32768,  7826,  1188,  1191,  1192,  7650,   329,   461,-32768,-32768,
  1151.   1255,  1208,-32768,  3647,  9200,  2367,  5239,-32768,-32768,  1257,
  1152. -32768,-32768,-32768,  6801,-32768,  7470,  7470,  5536,   397,  1162,
  1153.    421,  5961,-32768,-32768,-32768,  1209,  1169,  1171,-32768,  4808,
  1154.   4808,   894,-32768,-32768,-32768,  1221,   697,  7826,-32768,-32768,
  1155. -32768,   606,   606,   488,   488,-32768,  6707,   972,-32768,-32768,
  1156.   5961,  7826,  7826,  7826,  7826,  5961,-32768,  7826,  1222,-32768,
  1157. -32768,  9345,   623,  7826,-32768,   595,-32768,-32768,-32768,-32768,
  1158. -32768,-32768,  1176,-32768,  1240,-32768,-32768,   901,-32768,-32768,
  1159. -32768,  7826,-32768,-32768,  1600,  1600,  2955,    77,-32768,-32768,
  1160. -32768,-32768,-32768,   316,-32768,-32768,-32768,-32768,-32768,-32768,
  1161. -32768,   836,  1196,  1198,  4434,-32768,-32768,-32768,-32768,  1234,
  1162.   7826,  1242,-32768,   836,-32768,  1212,-32768,-32768,   869,   909,
  1163. -32768,   921,   606,  8358,   923,   954,   202,-32768,-32768,-32768,
  1164. -32768,-32768,-32768,  1199,  1405,-32768,  5961,  5961,-32768,-32768,
  1165. -32768,-32768,-32768,   488,   100,  7826,  7826,  4808,   826,   826,
  1166.    972,   972,-32768,-32768,  1200,  1201,  1205,  1207,-32768,  9300,
  1167.   5961,   623,-32768,  1210,-32768,-32768,-32768,   901,  1215,-32768,
  1168. -32768,   557,   557,  7098,-32768,  1300,  4759,  7738,  7826,-32768,
  1169.   6908,-32768,  1259,-32768,-32768,   601,-32768,   826,-32768,-32768,
  1170.    826,  8622,  8622,  6137,-32768,-32768,-32768,   836,   479,-32768,
  1171. -32768,  5961,   972,   928,  4808,  4808,-32768,   488,   488,-32768,
  1172. -32768,-32768,-32768,-32768,-32768,  5961,-32768,-32768,-32768,-32768,
  1173. -32768,  7738,-32768,-32768,-32768,-32768,    67,-32768,-32768,  1263,
  1174. -32768,  1219,   369,  3894,  9323,  6908,-32768,-32768,-32768,    65,
  1175. -32768,-32768,-32768,   488,-32768,-32768,   972,   972,-32768,  1220,
  1176.    836,  7003,-32768,   607,-32768,-32768,-32768,-32768,   606,-32768,
  1177. -32768,  1232,  1308,  1269,-32768,   972,-32768,-32768,-32768,-32768,
  1178.     67,-32768,-32768,-32768,  7826,  1271,  6225,   836,   826,  6908,
  1179. -32768,  1239,   166,  1274,-32768,-32768,-32768,-32768,-32768,-32768,
  1180.   1228,-32768,-32768,  1278,-32768,-32768,   488,-32768,  1247,  7826,
  1181.   1308,  1286,  1308,-32768,-32768,-32768,  1283,  3478,   836,  1246,
  1182.    360,-32768,-32768,  6313,-32768,-32768,  1251,  1260,-32768,-32768,
  1183.   1340,  1294,  1266,  5961,-32768,-32768,-32768,-32768,   303,-32768,
  1184. -32768,-32768,-32768,  1355,  1317,  7003,-32768,-32768,-32768,-32768,
  1185.   1378,  1379,-32768
  1186. };
  1187.  
  1188. static const short yypgoto[] = {-32768,
  1189.   1381,-32768,  -288,-32768,  1017,    -2,  1383,-32768,-32768,-32768,
  1190. -32768,  1382,  1054,-32768,-32768,-32768,-32768,-32768,   538,-32768,
  1191. -32768,-32768,-32768,-32768,-32768,-32768,  -828,  1249,  1253,-32768,
  1192. -32768,-32768,-32768,  1241,-32768,-32768,   525,    25,-32768,-32768,
  1193. -32768,  3567,   -45,-32768,  1281,   908, -1033,-32768,  -118,   201,
  1194. -32768,   642,-32768,   194,-32768, -1140,-32768, -1069,    28,  1060,
  1195.    -75,   754,-32768,-32768,  -758,  3716,   -30,  -276,  2223,  3118,
  1196.    -52,  1858,   186,-32768,-32768,-32768,-32768,  -294,-32768,  -138,
  1197.   -106,-32768,  -122,   200,   -46,  -291,   142,    48,  -327,  -110,
  1198.      4,    17,  -152,    -4,  -137,  -655,   363,-32768,  -151,-32768,
  1199. -32768,  -119,-32768,-32768,-32768,-32768,-32768,   465,  1715,   -32,
  1200. -32768,   568,-32768,-32768,  -583,  -361,   777,    22,-32768,-32768,
  1201. -32768,   584,  -317,     6,  1384,  1385,-32768,-32768,-32768,-32768,
  1202.   1086,-32768,   521,   736,-32768,   569,   423,   507,  -435,-32768,
  1203. -32768,-32768,-32768,-32768,-32768,   998,-32768,   511,   866,   608,
  1204.    916,   -43,    49,    33,  -402,  1279,  2900,   -65,    32,-32768,
  1205.   2539,  -107,   555,    -6,  3328,  1155,-32768,  4004,  1225,   596,
  1206.   -349,   208,  3927,  1982,  -130,-32768,  1515,-32768,-32768,   408,
  1207.   -380, -1168,-32768,-32768,   566,  -117,  -149,-32768,-32768,-32768,
  1208.  -1155,  -989, -1169,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1209. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1210. -32768,-32768,-32768,   -28,-32768,-32768,-32768,-32768, -1160,   120,
  1211. -32768,   119,-32768,  -635,  -364,-32768,-32768,  -336,   797,  -330,
  1212. -32768,-32768,   -34,   537,-32768,   302,-32768,  -293
  1213. };
  1214.  
  1215.  
  1216. #define    YYLAST        9460
  1217.  
  1218.  
  1219. static const short yytable[] = {    54,
  1220.    360,    35,   608,   166,   389,   389,   654,    52,   610,   678,
  1221.    714,   602,   221,   559,   206,   502,   567,   570,   646,    54,
  1222.     53,   606,   352,   355,   194,   417,   862,   118,   642,   119,
  1223.    317,   664,   964,   220,    54,   215,    91,   390,   592,   391,
  1224.     53,  1013,   146,    93,  1265,   106,   385,   178,   425,   428,
  1225.    258,    50,    67,    93,   221,    53,  1270,  1170,   420,   450,
  1226.    336,   337,   212,   454,  1173,   922,   429,   416,   602,  1202,
  1227.    340,   117,    67,   539,   256,   190,   427,   123,   127,   305,
  1228.     54,   160,  1281,   539,   203,   693,   145,    67,   118,   539,
  1229.    313,    93,   305,   305,   359,   255,  1293,   712,   368,   395,
  1230.    884,    53,    81,   462,   334,   547,   455,   338,    83,  1019,
  1231.    633,     8,   712,   178,   376,    -1,   305,   397,   386,     7,
  1232.    107,  1290,  1313,    11,   -43,   267,  1303,   257,    84,   -43,
  1233.    415,   409,   312,    67,   843,  1310,  1327,   366,    54,    -2,
  1234.    -43,   178,    25,  1330,   715,   396,    52,   423,   194,   818,
  1235.     82,   732,   462,   349,   634,   451,   194,    20,  1020,    53,
  1236.    214,    25,  1336,   635,   636,  1108,   892,   160,  1202,   713,
  1237.     25,  1304,    26,    27,   885,   387,  1335,  1355,   351,   354,
  1238.    733,   617,   844,  1129,  1210,   367,    29,  1090,   892,   986,
  1239.     50,    67,   716,  1363,   572,   931,    30,  1295,  1373,   190,
  1240.    637,   452,   160,  1105,    31,    54,  1313,   190,   190,    32,
  1241.   1380,   398,   400,   444,   563,   893,  1122,   135,   894,    95,
  1242.    122,   898,    85,   602,   632,   303,    53,  1341,  -119,   110,
  1243.    602,  1277,     8,   190,   389,   389,   653,   893,   321,   323,
  1244.    894,  1329,  -710,   932,  1136,   221,    97,   107,   485,   543,
  1245.    455,   486,   212,   895,   487,   141,    98,   443,    67,   499,
  1246.    564,  1136,   303,   750,  1123,   571,   651,   652,   538,   536,
  1247.    899,   683,  1342,   900,   567,   895,   650,   190,   425,   428,
  1248.   -141,   305,   596,    99,   108,   109,  1301,     8,   100,   425,
  1249.    676,   107,  1137,   256,   352,   355,   142,    25,   682,   108,
  1250.    109,   212,   484,   684,   847,   648,   681,   107,   901,  1237,
  1251.    379,   121,   428,   796,   255,   135,   135,   135,    86,   102,
  1252.    660,   341,   334,   797,   428,   107,   190,   380,   597,   608,
  1253.   1338,    86,   102,   621,   605,   610,   664,   798,   602,   108,
  1254.    109,    25,   693,   108,   109,   749,   257,  1205,   587,   540,
  1255.    135,     7,   330,  -502,   541,   604,   381,   796,    54,   108,
  1256.    109,  1374,   674,   457,     8,   122,   118,   797,   119,   679,
  1257.    559,   103,   104,   602,   184,   185,   107,   108,   109,    53,
  1258.     12,   798,   107,   457,   103,   104,    83,   607,  1160,    20,
  1259.   1166,   662,   730,   194,   917,   685,   702,   191,   192,  -502,
  1260.    159,   216,    25,    18,    26,    27,    84,   139,  1151,  1375,
  1261.    117,    67,   604,    22,   717,   547,   108,   109,   140,   727,
  1262.    728,  1361,   729,   988,   156,    83,    25,   496,   108,   109,
  1263.   -498,   965,    25,  -498,   108,   109,   542,   190,   190,   178,
  1264.    216,    54,   463,  -249,   607,    84,   738,   719,   190,   444,
  1265.    671,   672,   464,   547,   785,   107,   787,   788,   485,   486,
  1266.    664,   732,    53,   806,    83,   305,  1362,  -539,   305,   865,
  1267.    821,   190,  -117,   305,   719,   719,   719,   719,   942,  -118,
  1268.    601,   157,  -498,   190,    84,  -498,   305,  -498,   834,  -249,
  1269.   -249,   121,   305,   443,    67,   107,   305,   602,  -498,   732,
  1270.    389,   602,   150,  -244,  1193,   536,   808,   108,   109,   807,
  1271.    822,   823,   608,  -539,  -539,   822,  -498,  -498,   610,    17,
  1272.   -498,   602,  1153,   642,   757,  -250,   602,  -539,   305,   256,
  1273.   -498,   606,   883,   910,   121,   111,   314,   661,   567,   570,
  1274.    497,   151,   209,   425,  1063,    25,   605,   108,   109,   874,
  1275.    255,   316,   809,   662,   502,   855,   498,   859,   860,   876,
  1276.    206,   871,   693,     7,     8,   930,   462,   604,   602,  1113,
  1277.    324,  -250,  -250,   328,   604,     7,   107,  -244,   497,   329,
  1278.      7,   330,   257,   933,   159,  -247,   137,   135,   135,   135,
  1279.    878,  1097,  1100,   718,   612,   875,   810,   812,   178,   607,
  1280.   -502,    20,   212,  1261,   357,   877,   607,  1250,  1251,   261,
  1281.    792,   731,   358,    20,   734,   860,    26,    27,    20,   740,
  1282.    741,   742,   743,   744,     7,     8,   190,   793,    26,    27,
  1283.    861,    25,   496,    26,    27,  -534,   879,    93,   303,   695,
  1284.    216,   792,   760,   696,   325,   326,  -502,   412,    31,  1262,
  1285.   1144,   714,   216,  1314,    -7,   918,   794,  1100,   793,  1283,
  1286.     31,   605,    20,     8,   686,    31,   214,   923,   757,   219,
  1287.    410,   411,   925,   926,   789,   733,   928,    26,    27,   377,
  1288.    602,   824,   604,   190,   137,   137,   137,   794,  1104,   219,
  1289.    687,   194,    86,    87,  -308,   688,   605,   214,  -308,  1315,
  1290.   1176,   457,   190,  1307,  1308,   849,   418,   419,   219,    31,
  1291.     86,   102,   392,    25,   607,   108,   109,   604,   966,   137,
  1292.    219,   850,  1328,   341,     7,   330,   435,   825,   826,  1194,
  1293.    602,   977,   458,   978,  1199,   383,    83,   151,   318,   322,
  1294.    190,     7,     8,    25,  1139,    88,    89,    90,   459,   607,
  1295.     83,   468,   968,   969,   733,   971,    84,   460,  1187,  1212,
  1296.   1213,   461,    20,   103,   104,   105,   475,   221,   219,  1000,
  1297.     84,   973,   476,  1084,  1085,   479,  1085,    26,    27,    20,
  1298.    985,     7,     8,   525,   370,   719,   371,  -309,   372,   967,
  1299.    214,  -309,    25,   478,    26,    27,   485,   486,   162,  1016,
  1300.    539,  1017,   480,  1018,   184,   185,   481,   601,   163,    31,
  1301.     12,   482,  1010,   576,   719,  1240,  1241,   219,   164,    20,
  1302.    605,   578,   526,   527,   662,   547,    31,   528,   529,   530,
  1303.    531,   165,    25,    18,    26,    27,   579,  1109,  1110,  1257,
  1304.   1112,   604,   661,    22,   605,   604,  1003,   581,   852,   605,
  1305.     13,    14,    13,    14,   582,    13,    14,   583,   853,   591,
  1306.     86,   102,   584,   585,   586,   604,    31,   587,   550,   595,
  1307.    604,   854,   552,   607,   615,   810,   812,   607,   523,   524,
  1308.   1282,    -6,  1046,  1072,  1041,   -97,   135,   618,   -96,   -97,
  1309.   1045,   662,   -96,   387,  1289,  1134,  1135,   607,   352,   355,
  1310.   1004,  1005,   607,    53,   656,   219,   305,   455,  1021,     7,
  1311.      8,   673,   604,   103,   104,  1317,     7,   107,    13,    14,
  1312.   1184,   677,   107,   725,    54,   455,   719,   492,  1227,   214,
  1313.    722,   963,   444,     7,   107,    67,   726,   211,  1118,   745,
  1314.   1339,   747,   219,  1114,   607,    53,   748,    20,   352,   355,
  1315.    750,   -94,    13,    14,    20,   -94,   137,   137,   137,   804,
  1316.    760,   805,    26,    27,   817,  1127,   661,   410,  1229,    26,
  1317.     27,    20,    25,   819,   108,   109,   443,    67,  1099,   418,
  1318.   1230,   733,  1235,   214,    25,   -93,    26,    27,   463,   -93,
  1319.    601,   373,  1215,   374,    31,   375,   821,  1159,   464,  1165,
  1320.     29,    31,  1372,   605,  1225,   432,    54,   433,   835,   434,
  1321.     30,   608,   410,  1236,   444,   471,   474,  1358,    31,   836,
  1322.    602,   845,   846,    32,   604,   485,   486,    53,   935,   936,
  1323.    937,  1185,   848,   851,   655,   380,  -247,  1248,  1249,   135,
  1324.    178,   864,  1046,  1099,  1041,   866,  1209,  1189,  1190,  1046,
  1325.   1045,  1041,  1068,   662,  1125,  1126,   607,  1045,   443,    67,
  1326.    219,  1152,   867,    53,   868,   869,   873,   190,   882,   890,
  1327.     53,   891,   718,   897,   604,  1208,  -709,   906,   908,   683,
  1328.    911,   135,    54,   912,   916,   924,   927,  1280,  1215,   934,
  1329.    444,   929,  1284,   938,   946,    67,   870,   939,  1076,  1077,
  1330.    940,   941,    67,    53,  1125,  1126,   607,   943,   944,   947,
  1331.    945,   492,   948,   949,   492,   950,   735,   737,   951,   739,
  1332.    462,     8,   913,  -116,   352,   355,   565,     8,  1231,   953,
  1333.    954,   957,   492,   959,   443,    67,    20,   956,   958,   907,
  1334.    219,  1215,   492,   960,   972,   975,   764,   909,   687,    25,
  1335.   1244,    26,    27,   914,   961,   962,   219,  1078,  1211,   622,
  1336.    267,   566,   974,   976,    20,   163,   983,  1337,  1215,    13,
  1337.     14,    25,   786,   108,   109,   164,  -358,    25,   803,   108,
  1338.    109,   981,   982,    31,   989,   990,   987,   992,   165,   995,
  1339.    998,   135,   135,   135,   623,  1001,   624,  1014,   625,  1359,
  1340.    626,   485,   486,  -358,  -358,   884,  1062,  1064,  -358,  1046,
  1341.   1065,  1041,  1046,  1273,  1075,  1092,  1046,  1045,  1041,  1093,
  1342.   1045,  1094,  1095,  1101,  1045,  1106,  1107,  1299,    74,   305,
  1343.     53,  1111,  1115,    53,   255,  1120,    94,    53,  1116,  1117,
  1344.   1119,   135,   135,   135,  1138,  1121,    94,   113,    94,  1146,
  1345.   1147,  1148,  1124,   125,   125,   137,   125,  1273,  1130,  1131,
  1346.   1132,  1155,    67,    74,  1319,    67,   257,  1157,  1175,    67,
  1347.   1171,  1046,  1179,  1041,   173,  1180,    74,  1181,   255,  1045,
  1348.    671,   672,  1186,  1201,    94,  1206,  1207,  1046,  1217,  1041,
  1349.   1218,    94,    53,  1222,   190,  1045,   520,   521,   522,   523,
  1350.    524,  1224,   222,    94,  1226,  1239,  1252,  1253,    53,    94,
  1351.    257,  1254,  1273,  1255,  1266,  1046,  1322,  1041,  1278,  1259,
  1352.     94,  1260,  1297,  1045,    67,  1298,  1309,  1321,  1326,  1012,
  1353.   1332,  1340,  1343,   255,  1344,   113,    53,  1345,   113,  1348,
  1354.     67,   173,    94,   605,    94,  1352,  1356,   125,  1368,   135,
  1355.    347,   125,  1360,  1370,   125,   125,   125,  1365,    86,    87,
  1356.    195,   196,   197,  1377,   604,   257,  1366,    74,    67,   173,
  1357.     74,  1046,  1371,  1041,  1066,   496,  1378,  1382,  1383,  1045,
  1358.      1,   620,   594,  1073,     5,    37,  1002,   173,   173,   173,
  1359.    198,   364,    53,   384,  1088,   365,   607,  1015,   183,   184,
  1360.    185,   345,  1258,  1379,   751,    12,  1264,  1162,   137,    25,
  1361.    997,    88,    89,   199,  -250,   173,  1268,   135,   135,   135,
  1362.    881,   996,   147,   148,    67,    17,   611,   915,    18,  -250,
  1363.   -250,  1011,  1069,  1128,    74,  1087,  -250,  1086,    22,   970,
  1364.    647,   710,   838,   994,   125,   424,   184,   185,   413,   791,
  1365.    137,  -250,    12,  1055,  1169,   647,   544,   200,   201,   202,
  1366.   1351,  1353,   904,  -250,  -250,  -250,  -250,  1089,  -250,     0,
  1367.    492,     0,    17,     0,     0,    18,     0,     0,     0,     0,
  1368.      0,    94,   465,     0,     0,    22,     0,     0,     0,   601,
  1369.      0,     0,     8,     0,    10,    11,     0,  -250,  -250,     0,
  1370.     12,  -250,     0,     7,     8,     0,     0,    11,     0,     0,
  1371.      0,  -250,     0,     0,     0,    15,   219,     0,     0,    16,
  1372.      0,     0,    94,    18,     0,     0,   545,   647,   465,   465,
  1373.    561,     0,     0,    22,  1182,  1183,   173,     0,     0,     0,
  1374.      0,    20,    25,     0,   108,   109,   532,   547,  1191,  1192,
  1375.      0,     0,  1067,   113,    25,   107,    26,    27,    11,   113,
  1376.    137,   137,   137,    94,     0,     0,     0,     0,     0,     0,
  1377.    852,     0,     0,     0,     0,   125,     0,     0,   125,     0,
  1378.    853,   533,     0,   125,     0,     0,   219,    94,    31,   647,
  1379.    550,   647,   647,   854,   552,     0,     0,     0,   547,     0,
  1380.      0,     0,     7,     8,     0,    25,   211,   108,   109,     0,
  1381.    137,   137,   137,     0,     0,     0,     0,   647,     0,     0,
  1382.      0,   548,   173,   647,   173,     0,   173,   173,   173,     0,
  1383.      0,   549,     0,     0,   173,     0,     0,     0,     0,   173,
  1384.     20,   550,   173,     0,   551,   552,   547,     0,  1243,     0,
  1385.      0,     0,  1247,    25,     0,    26,    27,     0,     0,    94,
  1386.      0,     0,   113,     0,     0,     0,     0,   173,    74,   852,
  1387.     74,     0,     0,     0,     0,     0,    94,  1150,     0,   853,
  1388.    518,   519,   520,   521,   522,   523,   524,    31,     0,   550,
  1389.      0,     0,   854,   552,     0,     0,   647,     0,     0,   492,
  1390.      0,     0,     0,    94,    94,    94,    94,     0,     0,  1285,
  1391.   1286,     0,  1287,  1288,     0,     0,     0,     0,   137,     0,
  1392.      0,     0,     0,     7,     8,   115,    10,    11,     0,     0,
  1393.    658,     0,    12,  1195,  1196,  1197,  1198,     0,     0,     0,
  1394.      0,     0,     0,     0,     0,  1204,     0,    15,  1306,     0,
  1395.      0,    16,    17,     0,     0,    18,     0,     0,    94,   107,
  1396.    465,    20,   211,     0,     0,    22,   181,   547,   189,     0,
  1397.    545,     0,   465,   465,    25,   561,    26,    27,     0,     0,
  1398.      0,     0,    74,     0,     0,     0,   137,   137,   137,     0,
  1399.   1006,   647,  1223,     0,     0,     0,     0,     0,     0,     0,
  1400.   1007,  1347,   547,     0,     0,     0,     0,     0,    31,    25,
  1401.    550,   108,   109,  1008,   552,     0,     0,   659,   556,   560,
  1402.    562,     0,     0,     0,     0,   548,   173,    74,   173,   173,
  1403.     94,   561,   181,     0,     0,   549,   516,   517,   518,   519,
  1404.    520,   521,   522,   523,   524,   550,     0,     0,   551,   552,
  1405.      0,     0,     0,   647,     0,     0,     0,     0,   764,  1271,
  1406.    181,     0,     0,     0,     0,     0,   647,     0,   647,     0,
  1407.      0,   107,     0,     0,   455,   492,     0,     0,     0,     8,
  1408.    115,    10,    11,     0,     0,   658,   173,    12,     0,   134,
  1409.     74,     0,   189,     0,     0,   173,   173,     0,   173,     0,
  1410.    426,   189,    15,  1271,   647,     0,    16,    17,     0,     0,
  1411.     18,     0,     0,     0,   547,     0,    94,     0,     0,     0,
  1412.     22,    25,     0,   108,   109,   921,   107,     0,     0,    25,
  1413.      0,   108,   109,     0,   647,     0,   647,   548,   647,     0,
  1414.      0,     0,     0,   465,     0,     0,     0,   549,     0,     0,
  1415.      0,   465,   465,   465,     0,   647,  1331,   550,  1271,     0,
  1416.    551,   552,     0,     0,     0,     0,     0,     0,     0,   547,
  1417.      0,     0,   659,     0,     0,     0,    25,     0,   108,   109,
  1418.      0,  1350,     0,     0,     0,    78,     0,     0,   353,   356,
  1419.      0,     0,   548,    96,     0,   764,     0,     0,     0,     0,
  1420.      0,     0,   549,    96,   114,   120,     0,     0,     0,     0,
  1421.    126,   126,   550,   126,    94,   551,   552,     7,   107,     0,
  1422.     78,    11,   134,     0,     0,     0,     0,     0,     0,     0,
  1423.      0,   126,     0,    78,   465,     0,   465,     0,     8,     0,
  1424.     10,    96,     0,    94,     0,     0,    12,   465,   120,    94,
  1425.      0,    74,    74,    74,     0,    20,     0,   991,     0,     0,
  1426.    120,    15,   811,   813,     0,    16,   120,     0,    25,    18,
  1427.     26,    27,     0,    94,     0,    94,   173,   173,   921,    22,
  1428.      0,     0,     0,     0,   130,     0,     0,     0,    25,     0,
  1429.    108,   109,   335,     0,   131,     0,     0,     0,   126,   120,
  1430.      0,     0,    31,     0,   126,     0,     0,   132,   126,     0,
  1431.      0,   126,   126,   126,     0,     0,   857,     0,   556,   560,
  1432.    921,   562,     0,     0,    78,     0,   126,    78,     0,     0,
  1433.    426,   189,   107,     0,   184,   185,    94,     0,     0,     0,
  1434.     12,   426,     0,   494,   126,   126,   126,     0,   173,     0,
  1435.      0,   125,     0,    74,     0,    94,     0,     0,   181,     0,
  1436.      0,     0,     0,    18,     0,     0,     0,     0,   724,     0,
  1437.      0,     0,   126,    22,     0,   547,   560,     0,     0,     0,
  1438.      0,   647,    25,     0,   108,   109,     0,     0,     0,     0,
  1439.      0,    78,   465,   465,     0,   465,     0,     0,   548,     0,
  1440.      0,   126,     0,     0,     0,     0,     0,     0,   549,     0,
  1441.      0,     7,     8,   183,   184,   185,     0,     0,   550,     0,
  1442.     12,   558,   552,   647,     0,     0,     0,     0,   173,   173,
  1443.    173,   173,   921,   560,   173,    74,     0,     0,   120,   126,
  1444.     17,     0,     0,    18,     0,     0,   697,   698,     0,    20,
  1445.      0,     0,     0,    22,     0,   547,     0,     0,     0,     0,
  1446.    353,   356,    25,     0,    26,    27,     0,     0,   173,    74,
  1447.    173,     0,     0,     0,     0,     0,     0,     0,   852,   120,
  1448.    921,   921,   921,   546,    20,   126,   126,    78,   853,     0,
  1449.    699,     0,   569,   126,     0,     0,    31,    25,   550,    26,
  1450.     27,   854,   552,     0,     0,   700,   295,     0,     0,     0,
  1451.    335,    74,     0,   163,     0,     0,     0,   181,     0,   189,
  1452.    120,     0,     0,   164,   979,     0,   980,   494,     0,     0,
  1453.    494,    31,   126,     0,     0,   126,   701,   984,     0,     0,
  1454.    126,   811,   813,   295,   120,     0,   724,   353,   746,   173,
  1455.    173,   173,     0,     0,     0,     0,     0,     0,   494,   120,
  1456.      0,     0,     0,     0,     0,     0,   811,   813,     0,     7,
  1457.      8,   183,   184,   185,     0,     0,   189,     0,    12,   126,
  1458.      0,   126,     0,   126,   126,   126,     0,     0,   921,   724,
  1459.      0,   126,     0,     0,     0,   426,   126,   724,    17,   126,
  1460.      0,    18,     0,     0,     0,     0,     0,    20,     0,     0,
  1461.      0,    22,     0,   547,     0,   832,   120,     0,     0,   114,
  1462.     25,     0,    26,    27,   126,    78,     0,    78,     0,     0,
  1463.      0,     0,     0,   120,     0,     0,   163,     0,     0,     0,
  1464.      0,     0,     8,     0,    10,    11,   164,     0,     0,     0,
  1465.     12,     0,     0,     0,    31,     0,   921,   921,   921,  1164,
  1466.    120,   120,   120,   120,     0,    15,     0,     0,     0,    16,
  1467.      0,     0,     0,    18,     0,     0,     0,     0,     0,     0,
  1468.      0,     0,     0,    22,     7,     8,   115,    10,    11,     0,
  1469.      0,   658,    25,    12,   108,   109,     0,     0,   173,   483,
  1470.      0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  1471.      0,     0,    16,    17,     0,   120,    18,   126,   979,   980,
  1472.    811,   813,    20,     0,   984,     0,    22,     0,     0,   126,
  1473.    126,   790,    78,     0,     0,    25,     0,    26,    27,   833,
  1474.      0,     0,    70,     0,     0,     0,     0,     0,     0,     0,
  1475.    569,   402,     0,     0,     0,     0,     0,     0,   134,     0,
  1476.      0,   403,     0,     0,     0,     0,     0,   124,   128,    31,
  1477.    811,   813,    94,     8,   404,    10,   211,   149,   659,   724,
  1478.      0,    12,     0,   126,    78,   126,   126,    96,    78,   832,
  1479.    182,     0,     0,     0,     0,     0,    15,     0,     0,     0,
  1480.     16,     0,   645,   649,    18,     0,     0,     0,     0,     0,
  1481.      0,     0,     0,     0,    22,     0,     0,     0,   649,     0,
  1482.      0,     0,     0,    25,   724,   108,   109,     8,     0,    10,
  1483.    211,     0,     0,   724,     0,    12,     0,     0,     0,   979,
  1484.    980,   984,     0,   126,   724,     0,     0,    78,     0,     0,
  1485.     15,     0,   126,   126,    16,   126,     0,     0,    18,     0,
  1486.      0,   346,   694,     0,     0,   348,     0,     0,    22,     0,
  1487.    547,     0,     0,   120,     0,     0,     0,    25,     0,   108,
  1488.    109,    70,    78,     0,   369,   353,   746,     0,     0,     0,
  1489.    649,     0,     0,   548,     0,     0,     0,     0,     0,     0,
  1490.    126,   124,   128,   549,     0,     0,     0,     0,   126,   126,
  1491.    126,   134,     0,   550,     0,     0,   551,   552,     0,   295,
  1492.      0,     0,   645,     0,     0,   761,   762,     0,   766,   767,
  1493.    768,   769,   770,   771,   772,   773,   774,   775,   776,   777,
  1494.    778,   779,   780,   781,   782,   783,   784,     0,   449,     0,
  1495.      0,     0,   649,  1060,   649,   649,     0,     0,   456,   181,
  1496.    189,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1497.      0,   120,     0,     7,     8,     0,     0,    11,     0,     0,
  1498.    649,     0,     0,     0,   724,   724,   649,     0,     0,     0,
  1499.      0,   126,     0,   126,     0,     0,     0,     0,   724,   724,
  1500.    120,   840,   842,     0,   126,     0,   120,     0,   833,   833,
  1501.    833,    20,     0,     0,   569,     0,     0,   437,     0,     7,
  1502.      8,   115,    10,    11,    25,     0,    26,    27,    12,     0,
  1503.    120,     0,   120,   126,   126,    78,     0,     0,     0,     0,
  1504.    163,     0,     0,    15,     0,     0,     0,    16,    17,     0,
  1505.    164,    18,  -452,     0,   120,     0,     0,    20,    31,   649,
  1506.      0,    22,   438,   165,   353,   356,   645,     0,     0,     0,
  1507.     25,     0,    26,    27,     0,     0,   439,   833,   440,     7,
  1508.      8,     0,     0,    11,     0,     0,    29,     0,     0,   613,
  1509.      0,     0,   614,   120,     0,     0,    30,   616,   724,     0,
  1510.      0,     0,   724,     0,    31,   126,     0,     0,   126,    32,
  1511.     78,     0,   120,     0,   353,  1174,     0,    20,     0,     0,
  1512.      0,     0,   919,   547,  -452,     0,     0,     0,     0,     0,
  1513.     25,     0,    26,    27,     0,     0,   346,     0,   348,     0,
  1514.      0,     0,     0,     0,     0,     0,  1006,     0,     0,   126,
  1515.    126,     0,   126,   456,   649,     0,  1007,     7,     8,   724,
  1516.    724,   455,   724,   724,    31,     0,   550,     0,     0,  1008,
  1517.    552,     0,     0,     0,     0,     0,     0,     0,   952,     0,
  1518.      0,   708,   711,     0,   449,   126,   126,   126,   126,    78,
  1519.      0,   126,    78,     0,     0,    20,     0,     0,   724,     0,
  1520.      0,   547,     7,   107,     0,     0,   455,     0,    25,     0,
  1521.     26,    27,     0,     0,     0,   645,   649,     0,     0,     0,
  1522.      0,  1060,     0,     0,   852,   126,    78,   126,     0,   649,
  1523.      0,   649,     0,     0,   853,     0,     0,   833,   833,   833,
  1524.     20,     0,    31,     0,   550,     0,     0,   854,   552,     0,
  1525.      0,   724,     0,    25,     0,    26,    27,   993,     0,     0,
  1526.      0,     0,   399,   401,   405,     0,     0,   649,    78,    29,
  1527.      0,     0,     0,     7,     8,   183,   184,   185,     0,    30,
  1528.      0,     0,    12,     0,     0,     0,     0,    31,     0,     0,
  1529.    353,  1174,    32,     0,     0,     0,     0,   649,     0,   649,
  1530.      0,   649,    17,     0,     0,    18,   126,   126,   126,     0,
  1531.      0,    20,     0,     0,     0,    22,     0,   547,   649,     0,
  1532.      0,    48,     0,     0,    25,     0,    26,    27,   645,     0,
  1533.      0,     0,     0,     0,     0,     0,     0,   213,  1070,  1071,
  1534.    852,   858,     0,     0,     0,   833,    48,    48,     0,   133,
  1535.    853,     0,     0,     0,     0,     0,    48,     0,    31,  -714,
  1536.    550,  -714,  -714,   896,   552,     0,     0,    48,  -714,    48,
  1537.      0,     0,     0,     0,     0,   645,   645,     0,     0,  1102,
  1538.      0,     0,     0,     0,     7,     8,     0,     0,   211,     0,
  1539.      0,   217,     0,     0,  -714,  -714,  -714,   214,  -714,     0,
  1540.   -714,     0,     0,     0,   903,     0,     0,     0,     0,   613,
  1541.    614,     0,   616,   833,   833,   833,     0,     0,     0,     7,
  1542.      8,     0,    20,    11,     0,     0,     0,     0,   332,     0,
  1543.    332,   332,     0,     0,    48,    25,     0,    26,    27,     0,
  1544.     48,   645,   217,     0,    48,     0,     0,   133,   133,   133,
  1545.      0,   163,     0,     0,  1145,   126,     0,    20,     0,     0,
  1546.     48,   164,    48,    48,     0,     0,     0,     0,     0,    31,
  1547.     25,     0,    26,    27,   165,     0,     0,     0,     0,     0,
  1548.     48,    48,   133,     0,   645,     0,   402,     0,     0,     0,
  1549.    217,     0,     0,     0,     0,     0,   403,   669,     0,   670,
  1550.   1188,   399,   401,   405,    31,     0,     0,     0,    48,   404,
  1551.    407,     7,     8,   645,   680,   455,     0,     0,   645,     0,
  1552.   1200,     0,     0,     0,     0,     0,     0,    48,     0,   120,
  1553.      0,    72,  -714,     0,  -714,  -714,     0,    48,     0,     0,
  1554.      0,  -714,   707,     0,   649,     0,     0,     0,     0,    20,
  1555.      0,     0,     0,     0,     0,     0,    72,    72,     0,    72,
  1556.      0,     0,    25,     0,    26,    27,    72,  -714,  -714,   408,
  1557.    214,  -714,     0,  -714,     0,     0,     0,    72,   163,    72,
  1558.      0,     0,     0,     0,  1076,   107,   649,     0,   164,     0,
  1559.    124,   128,     0,     0,     0,     0,    31,     0,     0,   645,
  1560.    645,   165,     0,   493,     0,     0,     0,     0,  1245,  1246,
  1561.      0,     0,     0,     0,     0,     0,     0,     0,     0,   332,
  1562.      0,     0,    20,   645,     0,     0,     0,   217,     0,    48,
  1563.      0,     0,     0,     0,     0,    25,     0,    26,    27,     0,
  1564.      0,  1275,     0,  1078,    72,     0,   332,     0,     0,     0,
  1565.     72,    29,   332,     0,    72,     0,     0,    72,    72,    72,
  1566.      0,    30,  1083,     0,   645,  1083,     0,   449,    48,    31,
  1567.     72,    48,    72,    72,    32,     0,    48,     0,   645,     0,
  1568.      0,     8,   115,    10,    11,     0,     0,  1357,     0,    12,
  1569.     72,    72,    72,     0,     0,     0,     0,     0,     0,     0,
  1570.      0,     0,     0,     0,    15,     0,     0,     0,    16,    17,
  1571.      0,     0,    18,     0,     0,    48,     0,    48,    72,   133,
  1572.    133,   133,    22,     0,     0,     0,     0,    48,     0,     0,
  1573.      0,    25,    48,   108,   109,    48,     0,    72,     0,     0,
  1574.      0,     0,   346,   348,     0,     0,     0,    72,   456,   449,
  1575.      0,   107,     0,   184,   185,     0,     0,     0,     0,    12,
  1576.     48,    48,     0,    48,     0,     0,     0,     0,     0,     0,
  1577.    669,   670,     0,   680,     0,     0,     0,     0,    92,     0,
  1578.      0,     0,    18,  1163,     0,     0,   645,   493,    92,    92,
  1579.    493,     0,    22,     0,   547,    92,    92,     0,    92,     0,
  1580.    405,    25,     0,   108,   109,     0,   493,   493,   493,     0,
  1581.      0,     0,     0,     0,     0,     0,     0,   548,   493,     0,
  1582.      8,   115,    10,    11,     0,   449,   205,   549,    12,     0,
  1583.      0,     0,     0,     0,     0,     0,     0,   550,   568,    72,
  1584.    551,   552,     0,    15,     0,     0,     0,    16,    17,     7,
  1585.      8,    18,     0,     0,     0,     0,     7,   107,     0,     0,
  1586.      0,    22,   217,   613,   614,   616,     0,     0,     0,     0,
  1587.     25,     0,   108,   109,     0,   493,     0,    92,    72,    92,
  1588.     92,    72,     0,     0,     0,     0,    72,    20,     0,    92,
  1589.    116,    92,    92,    92,    20,     0,    92,    92,    92,     0,
  1590.     25,     0,    26,    27,     0,   641,  1158,    25,     0,    26,
  1591.     27,     0,     0,     0,     0,     0,   163,     0,     0,    48,
  1592.     48,    48,    48,   130,     0,    72,   164,    72,     0,    72,
  1593.     72,    72,     0,   131,    31,     0,     0,    72,     0,   165,
  1594.      0,    31,    72,     0,   421,    72,   132,     0,     0,     0,
  1595.      0,   399,   401,   405,   513,   514,   515,   516,   517,   518,
  1596.    519,   520,   521,   522,   523,   524,  -714,     0,  -714,  -714,
  1597.     72,    72,     0,    72,     0,  -714,     0,     0,     0,    48,
  1598.      0,     0,     0,    48,     0,     0,    92,     0,    48,    48,
  1599.      0,    48,     0,     0,     0,   405,     0,     0,     0,     0,
  1600.      0,  -714,  -714,   422,   214,  -714,   657,  -714,     7,     8,
  1601.    115,    10,   259,   260,   261,   658,   262,    12,   133,     0,
  1602.      0,     0,     0,  1082,    92,     0,     0,     0,     0,     0,
  1603.      0,     0,    15,   263,   264,   265,    16,    17,   266,     0,
  1604.     18,     0,   267,   268,     0,   269,    20,   270,   271,   493,
  1605.     22,     0,     0,     0,   272,   273,   274,   275,   276,    25,
  1606.      0,    26,    27,     0,     0,     0,   277,     0,    92,     0,
  1607.     92,    92,   278,   568,     0,   279,     0,     0,     0,     0,
  1608.      0,     0,     0,   280,   281,   282,     0,     0,     0,     0,
  1609.      0,   283,   284,   285,     0,    92,     7,     8,   286,     0,
  1610.      0,    92,   659,   669,   670,   399,   401,   405,     0,   680,
  1611.      0,     0,  -682,    92,   287,     0,     0,    92,     0,     0,
  1612.     92,     0,     0,     0,     0,    92,     0,     0,     0,    72,
  1613.     72,    72,    72,     0,    20,     0,     0,     0,     0,     0,
  1614.      0,     0,     0,     0,   493,   493,   493,    25,     0,    26,
  1615.     27,     0,     0,     0,     0,   399,   401,   405,   138,     0,
  1616.      0,     0,     0,   163,     8,   115,    10,    11,     0,    48,
  1617.     48,   133,    12,   164,     0,     0,   174,     0,     0,     0,
  1618.      0,    31,     0,     0,     0,     0,   165,    15,     0,    72,
  1619.      0,    16,    17,    72,     0,    18,     0,     0,    72,    72,
  1620.      0,    72,     0,     0,    92,    22,     0,     0,     0,     0,
  1621.      0,     7,     8,  1059,    25,     0,   108,   109,     0,   553,
  1622.    553,   553,     0,     0,   669,   670,   680,     0,    72,     0,
  1623.      0,    92,     0,     0,     0,     0,     0,     0,   217,     0,
  1624.      0,    48,     0,   174,    48,     0,    48,     0,     0,    20,
  1625.      0,     0,     0,   172,     0,     0,   138,   138,   138,     0,
  1626.      0,     0,    25,   405,    26,    27,     0,     0,     0,     0,
  1627.      0,   174,     0,     0,     0,     0,     0,   218,   402,     0,
  1628.      0,     0,     0,     0,     0,     0,     0,     0,   403,   174,
  1629.    174,   406,     0,     0,     0,     0,    31,   218,     0,     0,
  1630.      0,   404,    92,     0,     0,     0,     0,     0,   217,     0,
  1631.      0,    92,    92,     0,    92,    92,     0,   174,     0,     0,
  1632.    172,    48,    48,   133,   133,   133,     0,    48,    48,     0,
  1633.      0,   399,   401,   405,     0,     0,   503,   504,   505,   506,
  1634.    507,   508,   509,   510,   511,   512,   513,   514,   172,   516,
  1635.    517,   518,   519,   520,   521,   522,   523,   524,     0,     0,
  1636.    568,    48,    48,    48,     0,     0,   172,   172,   172,     0,
  1637.      0,     0,   205,  1059,  1059,  1059,   414,     0,     0,    72,
  1638.     72,    72,     0,     0,   466,     0,     0,     8,   175,    10,
  1639.    176,     0,     0,     0,   172,    12,     0,     0,     0,     0,
  1640.    641,     0,     0,     0,    48,     0,     0,     0,     0,     0,
  1641.     15,     0,     0,     0,    16,    17,     0,     0,    18,     0,
  1642.      0,     0,     0,  1061,     0,   218,     0,     0,    22,     0,
  1643.    555,   555,   555,     0,     0,     0,     0,    25,   174,   108,
  1644.    109,     0,    48,    48,    48,     0,     0,     8,     0,    10,
  1645.     11,    72,     0,     0,    72,    12,    72,     0,     0,     0,
  1646.      0,     0,     0,   553,   553,     0,   553,     0,     0,     0,
  1647.     15,     0,     0,   831,    16,     0,     0,     0,    18,     0,
  1648.      0,  1059,     0,     0,     0,    92,     0,     0,    22,     0,
  1649.      0,     0,     0,    92,    92,    92,     0,    25,     0,   108,
  1650.    109,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1651.      0,     0,     0,   218,     0,   172,     0,   553,     0,   553,
  1652.    553,     0,   553,     0,   174,     0,   174,     0,   406,   406,
  1653.    406,    72,    72,    72,    72,    72,   174,    72,    72,     0,
  1654.      0,   174,     0,     0,   174,     0,     0,     0,     0,  1059,
  1655.   1059,  1059,   508,   509,   510,   511,   512,   513,   514,   515,
  1656.    516,   517,   518,   519,   520,   521,   522,   523,   524,   174,
  1657.      0,    72,    72,    72,     0,     0,    92,   553,    92,     0,
  1658.      0,     0,     0,  1061,  1061,  1061,     0,     0,     0,    92,
  1659.      0,    48,     8,   115,    10,    11,     0,     0,   658,     0,
  1660.     12,   172,     0,   172,     0,   172,   172,   172,     0,     0,
  1661.      0,     0,     0,   172,    72,    15,     0,     0,   172,    16,
  1662.     17,   172,     0,    18,     0,     0,     0,     0,     0,     0,
  1663.      0,     0,     0,    22,   553,   547,     0,     0,     0,     0,
  1664.      0,     0,    25,  1219,   108,   109,   172,     0,     0,     0,
  1665.      0,     0,    72,    72,    72,     0,     0,     0,   548,     0,
  1666.      0,     0,   799,     0,     0,     0,     0,     0,   549,     0,
  1667.      0,     0,     0,     0,   555,   555,     0,   555,   550,     0,
  1668.      0,   551,   552,     0,   555,   659,     0,     0,     0,     0,
  1669.      0,  1061,     0,    92,     0,  1220,   503,   504,   505,   506,
  1670.    507,   508,   509,   510,   511,   512,   513,   514,   515,   516,
  1671.    517,   518,   519,   520,   521,   522,   523,   524,     0,     0,
  1672.      0,     0,     0,     0,     0,   553,     0,   553,   856,     0,
  1673.    856,   856,     0,   555,    92,    92,     0,    92,   553,     0,
  1674.      0,     0,   831,   831,   831,   511,   512,   513,   514,   515,
  1675.    516,   517,   518,   519,   520,   521,   522,   523,   524,  1061,
  1676.   1061,  1061,     0,     0,   218,     0,     0,   553,   553,   553,
  1677.    507,   508,   509,   510,   511,   512,   513,   514,   515,   516,
  1678.    517,   518,   519,   520,   521,   522,   523,   524,   856,     0,
  1679.      0,     0,     0,     0,     0,     0,     0,   174,   174,     0,
  1680.    174,    72,     0,     0,     0,   172,     0,   172,   172,     0,
  1681.      0,   831,   512,   513,   514,   515,   516,   517,   518,   519,
  1682.    520,   521,   522,   523,   524,     0,   437,   406,     7,     8,
  1683.    115,    10,    11,     0,     0,     0,     0,    12,     0,     0,
  1684.      0,     0,     0,     0,     0,   555,     0,     0,     0,     0,
  1685.      0,     0,    15,   466,   466,   466,    16,    17,     0,     0,
  1686.     18,  -453,     0,     0,     0,   172,    20,     0,     0,     0,
  1687.     22,   438,     0,     0,   172,   172,     0,   172,     0,    25,
  1688.      0,    26,    27,     0,     0,   439,     0,   440,     0,     0,
  1689.      0,     0,     0,     0,     0,    29,     0,     0,     0,     0,
  1690.      0,     0,     0,     0,   920,    30,     0,     0,     0,     0,
  1691.      0,     0,     0,    31,     0,     0,     0,     0,    32,   553,
  1692.    553,   553,   553,   553,     0,   553,     0,     0,     0,     0,
  1693.      0,     0,     0,  -453,     0,     0,   555,     0,   555,     0,
  1694.      0,     0,     0,     0,     0,     0,     0,     0,     0,   555,
  1695.      0,     0,     0,   555,   555,   555,     0,     0,     0,   763,
  1696.      0,     7,     8,   115,    10,   259,   260,   261,     0,   262,
  1697.     12,   831,   831,   831,     0,     0,     0,     0,   856,   856,
  1698.   1009,     0,     0,     0,     0,    15,   263,   264,   265,    16,
  1699.     17,   266,     0,    18,     0,   267,   268,     0,   269,    20,
  1700.    270,   271,     0,    22,     0,     0,     0,   272,   273,   274,
  1701.    275,   276,    25,     0,    26,    27,  1267,     0,  -672,   277,
  1702.      0,     0,  1009,     0,     0,   278,     0,     0,   279,     0,
  1703.      0,     0,     0,     0,     0,     0,   280,   281,   282,    17,
  1704.    553,   553,   553,     0,   283,   284,   285,     0,     0,     0,
  1705.    174,   286,     0,     0,     0,   172,   172,   920,     0,     0,
  1706.      0,     0,     0,     0,     0,     0,     0,   287,     0,     0,
  1707.    503,   504,   505,   506,   507,   508,   509,   510,   511,   512,
  1708.    513,   514,   515,   516,   517,   518,   519,   520,   521,   522,
  1709.    523,   524,     0,     0,   799,   799,     0,   799,     0,   920,
  1710.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1711.      0,   643,     0,   752,   753,     0,    10,   469,   260,   261,
  1712.      0,   262,    12,     0,  1074,     0,     0,   172,     0,     0,
  1713.    856,   856,  1009,  1009,  1009,     0,   856,    15,   263,   264,
  1714.    265,    16,     0,   266,     0,    18,     0,   267,   268,     0,
  1715.    269,    20,   270,   271,     0,    22,     0,     0,     0,   272,
  1716.    273,   274,   275,   276,    25,     0,   754,   755,   644,     0,
  1717.    174,   277,   174,     0,     0,     0,     0,   278,     0,     0,
  1718.    279,     0,  1009,  1009,  1009,     0,     0,     0,   280,   281,
  1719.    282,     0,     0,     0,   218,     0,   283,   284,   285,     0,
  1720.      0,     0,     0,   286,   756,     0,     0,   172,   172,   172,
  1721.    172,   920,     0,   172,     0,     0,     0,     0,   880,   287,
  1722.      0,     0,   503,   504,   505,   506,   507,   508,   509,   510,
  1723.    511,   512,   513,   514,   515,   516,   517,   518,   519,   520,
  1724.    521,   522,   523,   524,     0,     0,     0,   172,     0,   172,
  1725.      0,   856,   856,   856,     0,     0,     0,     0,     0,   920,
  1726.    920,   920,     0,     0,     0,   643,     0,   752,   753,  1096,
  1727.     10,   469,   260,   261,     0,   262,    12,     0,     0,     0,
  1728.      0,     0,     0,  1098,     0,     0,     0,     0,     0,     0,
  1729.    406,    15,   263,   264,   265,    16,     0,   266,     0,    18,
  1730.      0,   267,   268,     0,   269,    20,   270,   271,     0,    22,
  1731.      0,     0,     0,   272,   273,   274,   275,   276,    25,     0,
  1732.    754,   755,   644,     0,     0,   277,     0,     0,   172,   172,
  1733.    172,   278,     0,     0,   279,     6,     0,     7,     8,     9,
  1734.     10,    11,   280,   281,   282,     0,    12,     0,     0,     0,
  1735.    283,   284,   285,     0,     0,     0,     0,   286,   406,   406,
  1736.    406,    15,     0,     0,     0,    16,    17,   920,     0,    18,
  1737.      0,     0,  -415,   287,     0,    20,     0,     0,     0,    22,
  1738.      0,     0,   363,     0,     0,     0,     0,     0,    25,     0,
  1739.     26,    27,     0,     0,    28,     0,     0,     0,     0,     0,
  1740.    174,     0,     0,     0,    29,     0,     0,     0,     0,     0,
  1741.      0,     0,     0,     0,    30,     0,     0,     0,     0,     0,
  1742.      0,     0,    31,     0,     0,     0,     0,    32,     0,     0,
  1743.      0,     0,    33,     0,     0,   920,   920,   920,     0,  1167,
  1744.      0,  1025,  1026,   115,    10,   259,   260,   261,     0,   262,
  1745.     12,  1027,     0,  1028,  1029,  1030,  1031,  1032,  1033,  1034,
  1746.   1035,  1036,  1037,    13,    14,    15,   263,   264,   265,    16,
  1747.     17,   266,     0,    18,     0,   267,   268,   172,   269,    20,
  1748.    270,   271,     0,    22,     0,     0,     0,   272,   273,   274,
  1749.    275,   276,    25,     0,  1038,    27,   387,     0,  1039,   277,
  1750.      0,     0,     0,     0,     0,   278,     0,     0,   279,     0,
  1751.      0,     0,     0,     0,     0,     0,   280,   281,   282,     0,
  1752.      0,     0,     0,     0,   283,   284,   285,     0,     0,     0,
  1753.      0,   286,     0,  1040,     0,     0,     0,     0,     0,     0,
  1754.      0,     0,     0,     0,     0,     0,  1168,   287,  1024,     0,
  1755.   1025,  1026,   115,    10,   259,   260,   261,     0,   262,    12,
  1756.   1027,     0,  1028,  1029,  1030,  1031,  1032,  1033,  1034,  1035,
  1757.   1036,  1037,    13,    14,    15,   263,   264,   265,    16,    17,
  1758.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  1759.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  1760.    276,    25,     0,  1038,    27,   387,     0,  1039,   277,     0,
  1761.      0,     0,     0,     0,   278,     0,     0,   279,     0,     0,
  1762.      0,     0,     0,     0,     0,   280,   281,   282,     0,     0,
  1763.      0,     0,     0,   283,   284,   285,     0,     0,     0,     0,
  1764.    286,   488,  1040,     7,     8,   115,    10,   259,   260,   261,
  1765.    658,   262,    12,     0,     0,     0,   287,     0,     0,     0,
  1766.      0,     0,     0,     0,     0,     0,     0,    15,   263,   264,
  1767.    265,    16,    17,   266,     0,    18,     0,   267,   268,     0,
  1768.    269,    20,   270,   271,     0,    22,     0,   547,     0,   272,
  1769.    273,   274,   275,   276,    25,     0,    26,    27,  -258,     0,
  1770.      0,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1771.    827,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1772.    828,     0,     0,     0,     0,     0,   283,   284,   285,     0,
  1773.    550,     0,     0,   829,   552,     0,   488,   659,     7,     8,
  1774.    115,    10,   259,   260,   261,   658,   262,    12,     0,   287,
  1775.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1776.      0,     0,    15,   263,   264,   265,    16,    17,   266,     0,
  1777.     18,     0,   267,   268,     0,   269,    20,   270,   271,     0,
  1778.     22,     0,   547,     0,   272,   273,   274,   275,   276,    25,
  1779.      0,    26,    27,  -258,     0,     0,   277,     0,     0,     0,
  1780.      0,     0,   278,     0,     0,  1056,     0,     0,     0,     0,
  1781.      0,     0,     0,   280,   281,  1057,     0,     0,     0,     0,
  1782.      0,   283,   284,   285,     0,   550,     0,     0,  1058,   552,
  1783.      0,   643,   659,   752,   753,     0,    10,   469,   260,   261,
  1784.      0,   262,    12,     0,   287,     0,     0,     0,     0,  1098,
  1785.      0,     0,     0,     0,     0,     0,     0,    15,   263,   264,
  1786.    265,    16,     0,   266,     0,    18,     0,   267,   268,     0,
  1787.    269,    20,   270,   271,     0,    22,     0,     0,     0,   272,
  1788.    273,   274,   275,   276,    25,     0,   754,   755,   644,     0,
  1789.      0,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1790.    279,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1791.    282,     0,     0,     0,     0,     0,   283,   284,   285,   643,
  1792.      0,   752,   753,   286,    10,   469,   260,   261,     0,   262,
  1793.     12,     0,     0,     0,     0,     0,     0,     0,  1133,   287,
  1794.      0,     0,     0,     0,     0,    15,   263,   264,   265,    16,
  1795.      0,   266,     0,    18,     0,   267,   268,     0,   269,    20,
  1796.    270,   271,     0,    22,     0,     0,     0,   272,   273,   274,
  1797.    275,   276,    25,     0,   754,   755,   644,     0,     0,   277,
  1798.      0,     0,     0,     0,   223,   278,     0,     8,   279,    10,
  1799.     11,     0,     0,     0,     0,    12,   280,   281,   282,     0,
  1800.      0,     0,     0,     0,   283,   284,   285,     0,     0,     0,
  1801.     15,   286,   756,     0,    16,     0,     0,     0,    18,     0,
  1802.    224,   225,     0,     0,     0,     0,     0,   287,    22,     0,
  1803.    226,     0,     0,     0,     0,     0,     0,    25,     0,   108,
  1804.    109,     0,   227,     0,     0,     0,   228,   229,   230,   231,
  1805.    232,   233,   234,   235,   236,   237,   238,   239,   240,   241,
  1806.    242,   243,   244,   245,   246,   247,   248,     0,     0,   249,
  1807.    250,   251,     0,   488,   252,     7,     8,   253,    10,   259,
  1808.    260,   261,     0,   262,    12,     0,     0,     0,     0,     0,
  1809.      0,     0,   254,     0,     0,     0,     0,     0,     0,    15,
  1810.    263,   264,   265,    16,     0,   266,     0,    18,     0,   267,
  1811.    268,     0,   269,    20,   270,   271,     0,    22,     0,     0,
  1812.      0,   272,   273,   274,   275,   276,    25,     0,    26,    27,
  1813.   -258,     0,     0,   277,     0,     0,     0,     0,     0,   278,
  1814.      0,     0,   489,     0,     0,     0,     0,     0,     0,     0,
  1815.    280,   281,   490,     0,     0,     0,     0,     0,   283,   284,
  1816.    285,   643,     0,     7,     8,   491,    10,   469,   260,   261,
  1817.      0,   262,    12,     0,     0,     0,     0,     0,     0,     0,
  1818.      0,   287,     0,     0,     0,     0,     0,    15,   263,   264,
  1819.    265,    16,     0,   266,     0,    18,     0,   267,   268,     0,
  1820.    269,    20,   270,   271,     0,    22,     0,     0,     0,   272,
  1821.    273,   274,   275,   276,    25,     0,    26,    27,   644,     0,
  1822.      0,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1823.    279,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1824.    282,     0,     0,     0,     0,     0,   283,   284,   285,   763,
  1825.      0,     7,     8,   286,    10,   469,   260,   261,     0,   262,
  1826.     12,     0,     0,     0,     0,     0,     0,     0,     0,   287,
  1827.      0,     0,     0,     0,     0,    15,   263,   264,   265,    16,
  1828.      0,   266,     0,    18,     0,   267,   268,     0,   269,    20,
  1829.    270,   271,     0,    22,     0,     0,     0,   272,   273,   274,
  1830.    275,   276,    25,     0,    26,    27,     0,     0,     0,   277,
  1831.   -672,     0,     0,     0,     0,   278,     0,     0,   279,     0,
  1832.      0,     0,     0,     0,     0,     0,   280,   281,   282,     0,
  1833.      0,     0,     0,     0,   283,   284,   285,   488,     0,     7,
  1834.      8,   286,    10,   259,   260,   261,     0,   262,    12,     0,
  1835.      0,     0,     0,     0,     0,     0,     0,   287,     0,     0,
  1836.      0,     0,     0,    15,   263,   264,   265,    16,     0,   266,
  1837.      0,    18,     0,   267,   268,     0,   269,    20,   270,   271,
  1838.      0,    22,     0,     0,     0,   272,   273,   274,   275,   276,
  1839.     25,     0,    26,    27,  -258,     0,     0,   277,     0,     0,
  1840.      0,     0,     0,   278,     0,     0,  1232,     0,     0,     0,
  1841.      0,     0,     0,     0,   280,   281,  1233,     0,     0,     0,
  1842.      0,     0,   283,   284,   285,  1333,     0,     7,     8,  1234,
  1843.     10,   259,   260,   261,     0,   262,    12,     0,     0,     0,
  1844.      0,     0,     0,     0,     0,   287,     0,     0,     0,     0,
  1845.      0,    15,   263,   264,   265,    16,     0,   266,     0,    18,
  1846.      0,   267,   268,     0,   269,    20,   270,   271,     0,    22,
  1847.      0,     0,     0,   272,   273,   274,   275,   276,    25,     0,
  1848.     26,    27,     0,     0,  -156,   277,     0,     0,     0,     0,
  1849.      0,   278,     0,     0,   279,     0,     0,     0,     0,     0,
  1850.      0,     0,   280,   281,   282,     0,     0,     0,     0,     0,
  1851.    283,   284,   285,   763,     0,     7,     8,   286,    10,   469,
  1852.    260,   261,     0,   262,    12,     0,     0,     0,     0,     0,
  1853.      0,     0,     0,   287,     0,     0,     0,     0,     0,    15,
  1854.    263,   264,   265,    16,     0,   266,     0,    18,     0,   267,
  1855.    268,     0,   269,    20,   270,   271,     0,    22,     0,     0,
  1856.      0,   272,   273,   274,   275,   276,    25,     0,    26,    27,
  1857.      0,     0,     0,   277,     0,     0,     0,     0,     0,   278,
  1858.      0,     0,   279,     0,     0,     0,     0,     0,     0,     0,
  1859.    280,   281,   282,     0,     0,     0,     0,     0,   283,   284,
  1860.    285,   839,     0,     7,     8,   286,    10,   469,   260,   261,
  1861.      0,   262,    12,     0,     0,     0,     0,     0,     0,  -672,
  1862.      0,   287,     0,     0,     0,     0,     0,    15,   263,   264,
  1863.    265,    16,     0,   266,     0,    18,     0,   267,   268,     0,
  1864.    269,    20,   270,   271,     0,    22,     0,     0,     0,   272,
  1865.    273,   274,   275,   276,    25,     0,    26,    27,     0,     0,
  1866.      0,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1867.    279,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1868.    282,     0,     0,     0,     0,     0,   283,   284,   285,   841,
  1869.      0,     7,     8,   286,    10,   469,   260,   261,     0,   262,
  1870.     12,     0,     0,     0,     0,     0,     0,     0,     0,   287,
  1871.      0,     0,     0,     0,     0,    15,   263,   264,   265,    16,
  1872.      0,   266,     0,    18,     0,   267,   268,     0,   269,    20,
  1873.    270,   271,     0,    22,     0,     0,     0,   272,   273,   274,
  1874.    275,   276,    25,     0,    26,    27,     0,     0,     0,   277,
  1875.      0,     0,     0,     0,     0,   278,     0,     0,   279,     0,
  1876.      0,     0,     0,     0,     0,     0,   280,   281,   282,     0,
  1877.      0,     0,     0,     0,   283,   284,   285,     0,     0,     7,
  1878.      8,   286,    10,   469,   260,   261,     0,   262,    12,     0,
  1879.      0,     0,     0,     0,     0,     0,     0,   287,     0,     0,
  1880.      0,     0,     0,    15,   263,   264,   265,    16,     0,   266,
  1881.      0,    18,     0,   267,   268,     0,   269,    20,   270,   271,
  1882.      0,    22,     0,     0,     0,   272,   273,   274,   275,   276,
  1883.     25,     0,    26,    27,     0,     0,     0,   277,     0,     0,
  1884.      0,     0,     0,   278,     0,     0,   279,   437,     0,     7,
  1885.      8,   115,    10,    11,   280,   281,   282,     0,    12,     0,
  1886.      0,     0,   283,   284,   285,     0,     0,     0,     0,   286,
  1887.      0,     0,     0,    15,     0,     0,     0,    16,    17,     0,
  1888.      0,    18,  -455,     0,     0,   287,   802,    20,     0,     0,
  1889.      0,    22,   438,     0,     0,     0,     0,     0,     0,     0,
  1890.     25,     0,    26,    27,     0,     0,   439,   437,   440,     7,
  1891.      8,   115,    10,    11,     0,     0,    29,     0,    12,     0,
  1892.      0,     0,     0,     0,     0,     0,    30,     0,     0,     0,
  1893.      0,     0,     0,    15,    31,     0,     0,    16,    17,    32,
  1894.      0,    18,  -454,     0,     0,     0,     0,    20,     0,     0,
  1895.      0,    22,   438,     0,  -455,     0,     0,     0,     0,     0,
  1896.     25,     0,    26,    27,     0,     0,   439,     0,   440,     0,
  1897.      0,     0,     0,     0,     0,     0,    29,     0,     0,     0,
  1898.      0,     0,     0,     0,     0,     0,    30,     0,     0,     0,
  1899.      0,     0,     0,     0,    31,     0,     0,     0,     0,    32,
  1900.      0,     0,     0,  1025,  1026,   115,    10,   259,   260,   261,
  1901.      0,   262,    12,  1027,  -454,  1028,  1029,  1030,  1031,  1032,
  1902.   1033,  1034,  1035,  1036,  1037,    13,    14,    15,   263,   264,
  1903.    265,    16,    17,   266,     0,    18,     0,   267,   268,     0,
  1904.    269,    20,   270,   271,     0,    22,     0,     0,     0,   272,
  1905.    273,   274,   275,   276,    25,     0,  1038,    27,   387,     0,
  1906.   1039,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1907.    279,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1908.    282,     0,     0,     0,     0,     0,   283,   284,   285,     0,
  1909.      0,     0,     0,   286,     0,  1040,     0,     0,     0,     0,
  1910.      0,     0,     0,     0,     0,     0,     0,     0,  1172,   287,
  1911.   1025,  1026,   115,    10,   259,   260,   261,     0,   262,    12,
  1912.   1027,     0,  1028,  1029,  1030,  1031,  1032,  1033,  1034,  1035,
  1913.   1036,  1037,    13,    14,    15,   263,   264,   265,    16,    17,
  1914.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  1915.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  1916.    276,    25,     0,  1038,    27,   387,     0,  1039,   277,     0,
  1917.      0,     0,     0,     0,   278,     0,     0,   279,     0,     0,
  1918.      0,     0,     0,     0,     0,   280,   281,   282,     0,     0,
  1919.      0,     0,     0,   283,   284,   285,     0,     0,     0,     0,
  1920.    286,     0,  1040,     0,     0,  1025,  1026,   115,    10,   259,
  1921.    260,   261,     0,   262,    12,  1027,   287,  1028,  1029,  1030,
  1922.   1031,  1032,  1033,  1034,  1035,  1036,  1037,    13,    14,    15,
  1923.    263,   264,   265,    16,    17,   266,     0,    18,     0,   267,
  1924.    268,     0,   269,    20,   270,   271,     0,    22,     0,     0,
  1925.      0,   272,   273,   274,   275,   276,    25,     0,  1038,    27,
  1926.   1311,     0,  1039,   277,     0,     0,     0,     0,     0,   278,
  1927.      0,     0,   279,     0,     0,     0,     0,     0,     0,     0,
  1928.    280,   281,   282,     0,     0,     0,     0,     0,   283,   284,
  1929.    285,     0,     0,     0,     0,   286,     0,  1040,     0,     0,
  1930.   1025,  1026,   115,    10,   259,   260,   261,     0,   262,    12,
  1931.   1027,   287,  1028,  1029,  1030,  1031,  1032,  1033,  1034,  1035,
  1932.   1036,  1037,    13,    14,    15,   263,   264,   265,    16,    17,
  1933.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  1934.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  1935.    276,    25,     0,  1038,    27,     0,     0,  1039,   277,     0,
  1936.      0,     0,     0,     0,   278,     0,     0,   279,     0,     0,
  1937.      0,     0,     0,     0,     0,   280,   281,   282,     0,     0,
  1938.      0,     0,     0,   283,   284,   285,     0,     0,     0,     0,
  1939.    286,     0,  1040,     7,     8,   115,    10,   259,   260,   261,
  1940.    658,   262,    12,     0,     0,     0,   287,     0,     0,     0,
  1941.      0,     0,     0,     0,     0,     0,     0,    15,   263,   264,
  1942.    265,    16,    17,   266,     0,    18,     0,   267,   268,     0,
  1943.    269,    20,   270,   271,     0,    22,     0,   547,     0,   272,
  1944.    273,   274,   275,   276,    25,     0,    26,    27,     0,     0,
  1945.      0,   277,     0,     0,     0,     0,     0,   278,     0,     0,
  1946.    827,     0,     0,     0,     0,     0,     0,     0,   280,   281,
  1947.    828,     0,     0,     0,     0,     0,   283,   284,   285,     0,
  1948.    550,     0,     0,   829,   552,     0,     0,   659,     7,     8,
  1949.    115,    10,   259,   260,   261,   658,   262,    12,     0,   287,
  1950.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1951.      0,     0,    15,   263,   264,   265,    16,    17,   266,     0,
  1952.     18,     0,   267,   268,     0,   269,    20,   270,   271,     0,
  1953.     22,     0,   547,     0,   272,   273,   274,   275,   276,    25,
  1954.      0,    26,    27,     0,     0,     0,   277,     0,     0,     0,
  1955.      0,     0,   278,     0,     0,  1056,     0,     0,     0,     0,
  1956.      0,     0,     0,   280,   281,  1057,     0,     0,     0,     0,
  1957.      0,   283,   284,   285,     0,   550,     0,     0,  1058,   552,
  1958.      7,     8,   659,    10,   259,   260,   261,     0,   262,    12,
  1959.      0,     0,     0,     0,   287,     0,     0,     0,     0,     0,
  1960.      0,     0,     0,     0,    15,   263,   264,   265,    16,     0,
  1961.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  1962.    271,     0,    22,     0,   547,     0,   272,   273,   274,   275,
  1963.    276,    25,     0,    26,    27,     0,     0,     0,     0,     0,
  1964.      0,     0,     0,     0,   278,     0,     0,   827,     0,     0,
  1965.      0,     0,     0,     0,     0,   280,   281,   828,     0,     0,
  1966.      0,     0,     0,   283,   284,   285,     0,   550,     0,     0,
  1967.    829,   552,     7,     8,     0,    10,   259,   260,   261,     0,
  1968.    262,    12,     0,     0,     0,     0,   287,     0,     0,     0,
  1969.      0,     0,     0,     0,     0,     0,    15,   263,   264,   265,
  1970.     16,     0,   266,     0,    18,     0,   267,   268,     0,   269,
  1971.     20,   270,   271,     0,    22,     0,   547,     0,   272,   273,
  1972.    274,   275,   276,    25,     0,    26,    27,     0,     0,     0,
  1973.      0,     0,     0,     0,     0,     0,   278,     0,     0,  1056,
  1974.      0,     0,     0,     0,     0,     0,     0,   280,   281,  1057,
  1975.      0,     0,     0,     0,     0,   283,   284,   285,     0,   550,
  1976.      0,     0,  1058,   552,     7,     8,     0,    10,   259,   260,
  1977.    261,     0,   262,    12,     0,     0,     0,     0,   287,     0,
  1978.      0,     0,     0,     0,     0,     0,     0,     0,    15,   263,
  1979.    264,   265,    16,     0,   266,     0,    18,     0,   267,   268,
  1980.      0,   269,    20,   270,   271,     0,    22,     0,     0,     0,
  1981.    272,   273,   274,   275,   276,    25,     0,    26,    27,     0,
  1982.      0,     0,   277,     0,     0,     0,     0,     0,   278,     0,
  1983.      0,   279,     0,     0,     0,     0,   344,     0,     0,   280,
  1984.    281,   282,     0,     0,     0,     0,     0,   283,   284,   285,
  1985.      0,     0,     7,     8,   286,    10,   469,   260,   261,     0,
  1986.    262,    12,     0,     0,     0,     0,     0,     0,     0,     0,
  1987.    287,     0,     0,     0,     0,     0,    15,   263,   264,   265,
  1988.     16,     0,   266,     0,    18,     0,   267,   268,     0,   269,
  1989.     20,   270,   271,     0,    22,     0,     0,     0,   272,   273,
  1990.    274,   275,   276,    25,     0,    26,    27,     0,     0,  1149,
  1991.    277,     0,     0,     0,     0,     0,   278,     0,     0,   279,
  1992.      0,     0,     0,     0,     0,     0,     0,   280,   281,   282,
  1993.      0,     0,     0,     0,     0,   283,   284,   285,     0,     0,
  1994.      7,     8,   286,    10,   259,   260,   261,     0,   262,    12,
  1995.      0,     0,     0,     0,     0,     0,     0,     0,   287,     0,
  1996.      0,     0,     0,     0,    15,   263,   264,   265,    16,     0,
  1997.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  1998.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  1999.    276,    25,     0,    26,    27,     0,     0,     0,   277,     0,
  2000.      0,     0,     0,     0,   278,     0,     0,   279,     0,     0,
  2001.      0,     0,     0,     0,     0,   280,   281,   282,     0,     0,
  2002.      0,     0,     0,   283,   284,   285,     0,     0,     7,     8,
  2003.    286,    10,   469,   260,   261,     0,   262,    12,     0,     0,
  2004.      0,     0,     0,     0,     0,     0,   287,     0,     0,     0,
  2005.      0,     0,    15,   263,   264,   265,    16,     0,   266,     0,
  2006.     18,     0,   267,   268,     0,   269,    20,   270,   271,     0,
  2007.     22,     0,     0,     0,   272,   273,   274,   275,   276,    25,
  2008.      0,    26,    27,     0,     0,     0,   277,     0,     0,     0,
  2009.      0,     0,   278,     0,     0,   279,     0,     0,     0,     0,
  2010.      0,     0,     0,   280,   281,   282,     0,     0,     0,     0,
  2011.      0,   283,   284,   285,     0,     0,     7,     8,   286,    10,
  2012.    469,   260,   261,     0,   262,    12,     0,     0,     0,     0,
  2013.      0,     0,     0,     0,   287,     0,     0,     0,     0,     0,
  2014.     15,   263,   264,   265,    16,     0,   266,     0,    18,     0,
  2015.    267,   268,     0,   269,    20,   270,   271,     0,    22,     0,
  2016.      0,     0,   272,   273,   274,   275,   276,    25,     0,    26,
  2017.     27,   500,     0,     0,     0,     0,     0,     0,     0,     0,
  2018.    278,     0,     0,   279,     0,     0,     0,     0,     0,     0,
  2019.      0,   280,   281,   282,     0,     0,     0,     0,     0,   283,
  2020.    284,   285,     0,     0,     7,     8,   501,    10,   469,   260,
  2021.    261,     0,   262,    12,     0,     0,     0,     0,     0,     0,
  2022.      0,     0,   287,     0,     0,     0,     0,     0,    15,   263,
  2023.    264,   265,    16,     0,   266,     0,    18,     0,   267,   268,
  2024.      0,   269,    20,   270,   271,     0,    22,     0,     0,     0,
  2025.    272,   273,   274,   275,   276,    25,     0,    26,    27,     0,
  2026.      0,     0,     0,     0,     0,     0,     0,     0,   278,     0,
  2027.      0,   279,     0,     0,     0,     0,     0,     0,     0,   280,
  2028.    281,   282,     0,     0,     0,     0,     0,   283,   284,   285,
  2029.      0,     0,     0,     0,   286,   537,     7,   736,     0,    10,
  2030.    469,   260,   261,     0,   262,    12,     0,     0,     0,     0,
  2031.    287,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2032.     15,   263,   264,   265,    16,     0,   266,     0,    18,     0,
  2033.    267,   268,     0,   269,    20,   270,   271,     0,    22,     0,
  2034.      0,     0,   272,   273,   274,   275,   276,    25,     0,    26,
  2035.     27,     0,     0,     0,   277,     0,     0,     0,     0,     0,
  2036.    278,     0,     0,   279,     0,     0,     0,     0,     0,     0,
  2037.      0,   280,   281,   282,     0,     0,     0,     0,     0,   283,
  2038.    284,   285,     0,     0,     7,     8,   286,    10,   469,   260,
  2039.    261,     0,   262,    12,     0,     0,     0,     0,     0,     0,
  2040.      0,     0,   287,     0,     0,     0,     0,     0,    15,   263,
  2041.    264,   265,    16,     0,   266,     0,    18,     0,   267,   268,
  2042.      0,   269,    20,   270,   271,     0,    22,     0,     0,     0,
  2043.    272,   273,   274,   275,   276,    25,     0,    26,    27,     0,
  2044.      0,     0,   277,     0,     0,     0,     0,     0,   278,     0,
  2045.      0,   489,     0,     0,     0,     0,     0,     0,     0,   280,
  2046.    281,   490,     0,     0,     0,     0,     0,   283,   284,   285,
  2047.      0,     0,   999,     8,   491,    10,   469,   260,   261,     0,
  2048.    262,    12,     0,     0,     0,     0,     0,     0,     0,     0,
  2049.    287,     0,     0,     0,     0,     0,    15,   263,   264,   265,
  2050.     16,     0,   266,     0,    18,     0,   267,   268,     0,   269,
  2051.     20,   270,   271,     0,    22,     0,     0,     0,   272,   273,
  2052.    274,   275,   276,    25,     0,    26,    27,     0,     0,     0,
  2053.    277,     0,     0,     0,     0,     0,   278,     0,     0,   279,
  2054.      0,     0,     0,     0,     0,     0,     0,   280,   281,   282,
  2055.      0,     0,     0,     0,     0,   283,   284,   285,     0,     0,
  2056.      7,     8,   286,    10,   469,   260,   261,     0,   262,    12,
  2057.      0,     0,     0,     0,     0,     0,     0,     0,   287,     0,
  2058.      0,     0,     0,     0,    15,   263,   264,   265,    16,     0,
  2059.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  2060.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  2061.    276,    25,     0,    26,    27,     0,     0,     0,   277,     0,
  2062.      0,     0,     0,     0,   278,     0,     0,  1232,     0,     0,
  2063.      0,     0,     0,     0,     0,   280,   281,  1233,     0,     0,
  2064.      0,     0,     0,   283,   284,   285,     0,     0,     7,     8,
  2065.   1234,    10,   469,   260,   261,     0,   262,    12,     0,     0,
  2066.      0,     0,     0,     0,     0,     0,   287,     0,     0,     0,
  2067.      0,     0,    15,   263,   264,   265,    16,     0,   266,     0,
  2068.     18,     0,   267,   268,     0,   269,    20,   270,   271,     0,
  2069.     22,     0,     0,     0,   272,   273,   274,   275,   276,    25,
  2070.      0,    26,    27,     0,     0,     0,     0,     0,     0,     0,
  2071.      0,     0,   278,     0,     0,   279,     0,     0,     0,     0,
  2072.      0,     0,     0,   280,   281,   282,     0,     0,     0,     0,
  2073.      0,   283,   284,   285,     0,     0,     7,     8,   286,    10,
  2074.    469,   260,   261,     0,   262,    12,     0,     0,     0,     0,
  2075.      0,     0,     0,     0,   287,     0,     0,     0,     0,     0,
  2076.     15,   263,   264,   265,    16,     0,   266,     0,    18,     0,
  2077.    267,   268,     0,   269,    20,   270,   271,     0,    22,     0,
  2078.      0,     0,   272,   273,   274,   275,   276,    25,     0,    26,
  2079.     27,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2080.    278,     0,     0,   489,     0,     0,     0,     0,     0,     0,
  2081.      0,   280,   281,   490,     0,     0,     0,     0,     0,   283,
  2082.    284,   285,     0,     0,     7,     8,   491,    10,   259,   260,
  2083.    261,     0,   262,    12,     0,     0,     0,     0,     0,     0,
  2084.      0,     0,   287,     0,     0,     0,     0,     0,    15,   263,
  2085.    264,   265,    16,     0,   266,     0,    18,     0,   267,   268,
  2086.      0,   269,    20,   270,   271,     0,    22,     0,     0,     0,
  2087.    272,   273,   274,   275,   276,    25,     0,    26,    27,     0,
  2088.      0,     0,     0,     0,     0,     0,     0,     0,   278,     0,
  2089.      0,  1232,     0,     0,     0,     0,     0,     0,     0,   280,
  2090.    281,  1233,     0,     0,     0,     0,     0,   283,   284,   285,
  2091.      0,     0,     7,     8,  1234,    10,   469,   260,   261,     0,
  2092.    262,    12,     0,     0,     0,     0,     0,     0,     0,     0,
  2093.    287,     0,     0,     0,     0,     0,    15,   263,     0,     0,
  2094.     16,     0,   266,     0,    18,     0,   267,   268,     0,   269,
  2095.     20,   270,   271,     0,    22,     0,     0,     0,   272,   273,
  2096.    274,   275,   276,    25,     0,    26,    27,     0,     0,     0,
  2097.      0,     0,     0,     0,     0,     0,   278,     0,     0,   279,
  2098.      0,     0,     0,     0,     0,     0,     0,   280,   281,   282,
  2099.      0,     0,     0,     0,     0,   283,   284,   285,     0,     0,
  2100.      7,     8,   470,    10,   469,   260,   261,     0,   262,    12,
  2101.      0,     0,     0,     0,     0,     0,     0,     0,   287,     0,
  2102.      0,     0,     0,     0,    15,   263,     0,     0,    16,     0,
  2103.    266,     0,    18,     0,   267,   268,     0,   269,    20,   270,
  2104.    271,     0,    22,     0,     0,     0,   272,   273,   274,   275,
  2105.    276,    25,     0,    26,    27,     0,     0,     0,     0,     0,
  2106.      0,     0,     0,     0,   278,     0,     0,   279,     0,     0,
  2107.      0,     0,     0,     0,     0,   280,   281,   282,     0,     0,
  2108.      0,     0,     0,   283,   284,   285,     0,     0,     0,     6,
  2109.    473,     7,     8,     9,    10,    11,     0,     0,     0,     0,
  2110.     12,     0,     0,     0,     0,     0,   287,     0,     0,     0,
  2111.      0,     0,     0,    13,    14,    15,     0,     0,     0,    16,
  2112.     17,     0,     0,    18,     0,     0,     0,    19,     0,    20,
  2113.      0,     0,    21,    22,    23,   144,    24,     7,     8,   115,
  2114.     10,    11,    25,     0,    26,    27,    12,     0,    28,     0,
  2115.      0,     0,     0,     0,     0,     0,     0,     0,    29,     0,
  2116.      0,    15,     0,     0,     0,    16,    17,     0,    30,    18,
  2117.      0,     0,     0,     0,     0,    20,    31,     0,     0,    22,
  2118.      0,    32,     0,     0,     0,     0,    33,    34,    25,     0,
  2119.     26,    27,  -330,     8,  -330,    10,   211,     0,     0,     0,
  2120.      0,    12,     0,     0,    29,     0,     0,     0,     0,     7,
  2121.      8,   175,    10,   176,    30,     0,    15,     0,    12,     0,
  2122.     16,  -330,    31,     0,    18,     0,     0,    32,     0,     0,
  2123.   -330,     0,     0,    15,    22,     0,   547,    16,    17,     0,
  2124.      0,    18,     0,    25,     0,   108,   109,    20,     0,     0,
  2125.      0,    22,     0,     0,     0,     0,     0,     0,     0,   548,
  2126.     25,     0,    26,    27,     0,     0,   177,     0,     0,   549,
  2127.      0,     0,     0,     0,     0,     0,    29,  -330,     0,   550,
  2128.      0,     0,   551,   552,     0,     0,    30,   697,     8,   175,
  2129.     10,   176,     0,     0,    31,     0,    12,     0,     0,    32,
  2130.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2131.      0,    15,     0,     0,     0,    16,    17,     0,     0,    18,
  2132.      0,     0,     0,     0,     0,    20,     0,     0,     0,    22,
  2133.      0,     0,     0,     0,     0,     0,     0,     0,    25,     0,
  2134.     26,    27,     0,     0,     0,     0,   700,     0,     0,     0,
  2135.      0,     0,     0,     0,    29,     0,     7,     8,   115,    10,
  2136.     11,     0,     0,   902,    30,    12,     0,     0,     0,     0,
  2137.      0,     0,    31,     0,     0,     0,     0,    32,     0,     0,
  2138.     15,     0,     0,     0,    16,    17,     0,     0,    18,     0,
  2139.      0,     0,     0,     0,    20,     0,     0,     0,    22,     0,
  2140.      0,     0,     7,     8,   175,    10,   176,    25,     0,    26,
  2141.     27,    12,     0,     0,     0,     0,     0,     0,     0,     0,
  2142.      0,     0,     0,    29,     0,     0,    15,     0,     0,     0,
  2143.     16,    17,     0,    30,    18,     0,     0,     0,     0,     0,
  2144.     20,    31,     0,     0,    22,     0,    32,     0,     7,     8,
  2145.    175,    10,   176,    25,     0,    26,    27,    12,     0,  1161,
  2146.      0,     0,     0,     0,     0,     0,     0,     0,     0,    29,
  2147.      0,     0,    15,     0,     0,     0,    16,    17,     0,    30,
  2148.     18,     0,     0,     0,     0,     0,    20,    31,     0,     0,
  2149.     22,     0,    32,     0,     0,     0,     0,     0,     0,    25,
  2150.      0,    26,    27,     0,     0,     0,     0,     0,     0,     0,
  2151.      0,     0,     0,     0,     0,    29,     0,     0,     0,     0,
  2152.      0,     0,     0,     0,     0,    30,     0,     0,     0,     0,
  2153.      0,     0,     0,    31,     0,   580,     0,     0,    32,   503,
  2154.    504,   505,   506,   507,   508,   509,   510,   511,   512,   513,
  2155.    514,   515,   516,   517,   518,   519,   520,   521,   522,   523,
  2156.    524,  1256,   503,   504,   505,   506,   507,   508,   509,   510,
  2157.    511,   512,   513,   514,   515,   516,   517,   518,   519,   520,
  2158.    521,   522,   523,   524,  1300,   503,   504,   505,   506,   507,
  2159.    508,   509,   510,   511,   512,   513,   514,   515,   516,   517,
  2160.    518,   519,   520,   521,   522,   523,   524,   503,   504,   505,
  2161.    506,   507,   508,   509,   510,   511,   512,   513,   514,   515,
  2162.    516,   517,   518,   519,   520,   521,   522,   523,   524,   509,
  2163.    510,   511,   512,   513,   514,   515,   516,   517,   518,   519,
  2164.    520,   521,   522,   523,   524,   510,   511,   512,   513,   514,
  2165.    515,   516,   517,   518,   519,   520,   521,   522,   523,   524
  2166. };
  2167.  
  2168. static const short yycheck[] = {     4,
  2169.    139,     4,   339,    50,   154,   155,   387,     4,   339,   412,
  2170.    446,   339,    78,   305,    60,   292,   311,   311,   380,    24,
  2171.      4,   339,   130,   131,    57,   178,   610,    24,   378,    24,
  2172.     96,   396,   791,    77,    39,    70,    12,   155,   327,   158,
  2173.     24,   870,    39,    12,  1214,    21,   153,    52,   186,   187,
  2174.     79,     4,     4,    22,   120,    39,  1217,  1047,   181,   212,
  2175.    113,   114,    67,   215,  1054,   701,   189,   178,   396,  1103,
  2176.    117,    24,    24,     9,    79,    54,   187,    29,    30,    84,
  2177.     85,    49,  1238,     9,    60,   435,    39,    39,    85,     9,
  2178.     85,    60,    97,    98,   138,    79,  1265,    36,   145,    47,
  2179.     34,    85,    60,   256,   111,    47,     7,   114,    54,    59,
  2180.      3,     4,    36,   118,   149,     0,   121,   161,     1,     3,
  2181.      4,  1262,  1292,     7,    59,    37,    62,    79,    74,    64,
  2182.    174,   166,    85,    85,    59,  1291,  1305,    60,   143,     0,
  2183.     75,   146,    54,  1312,    60,    93,   143,   182,   181,   552,
  2184.    108,    93,   305,   129,    47,    47,   189,    41,   108,   143,
  2185.     61,    54,  1318,    56,    57,   107,    10,   135,  1202,   108,
  2186.     54,   107,    56,    57,   108,    58,  1317,  1346,   130,   131,
  2187.    472,   107,   107,  1012,   108,   108,    70,   107,    10,   825,
  2188.    143,   143,   108,  1354,   313,    59,    80,  1267,  1367,   178,
  2189.     93,    93,   170,   962,    88,   210,  1376,   186,   187,    93,
  2190.   1379,   163,   164,   210,    47,    59,    59,    32,    62,    12,
  2191.     54,    10,    48,   551,   376,    84,   210,    62,    62,    22,
  2192.    558,  1221,     4,   212,   384,   385,   386,    59,    97,    98,
  2193.     62,  1311,    64,   107,    60,   311,    93,     4,   279,   302,
  2194.      7,   282,   257,    97,   285,    58,    93,   210,   210,   290,
  2195.     93,    60,   121,   107,   107,   312,   384,   385,   299,   298,
  2196.     59,   423,   107,    62,   569,    97,   383,   256,   416,   417,
  2197.     60,   286,   335,    93,    56,    57,  1276,     4,     3,   427,
  2198.    410,     4,   108,   298,   402,   403,    99,    54,   418,    56,
  2199.     57,   306,   278,   426,   593,   381,   417,     4,    97,   108,
  2200.     47,    74,   450,    70,   298,   130,   131,   132,     3,     4,
  2201.    396,   101,   329,    80,   462,     4,   305,    64,   335,   666,
  2202.   1320,     3,     4,   368,   339,   666,   701,    94,   666,    56,
  2203.     57,    54,   692,    56,    57,   495,   298,  1106,   324,     1,
  2204.    165,     3,     4,    47,     6,   339,    93,    70,   363,    56,
  2205.     57,    59,   406,    80,     4,    54,   363,    80,   363,   413,
  2206.    662,    56,    57,   701,     6,     7,     4,    56,    57,   363,
  2207.     12,    94,     4,    80,    56,    57,    54,   339,  1044,    41,
  2208.   1046,   396,   468,   426,    62,   430,   443,    59,    60,    93,
  2209.     94,    80,    54,    35,    56,    57,    74,    93,    80,   107,
  2210.    363,   363,   396,    45,   449,    47,    56,    57,    60,   463,
  2211.    464,    62,   466,   826,    60,    54,    54,   286,    56,    57,
  2212.      7,   793,    54,    10,    56,    57,    88,   416,   417,   444,
  2213.     80,   446,    70,    47,   396,    74,   477,   452,   427,   446,
  2214.    402,   403,    80,    47,   530,     4,   532,   533,   489,   490,
  2215.    825,    93,   446,    47,    54,   470,   107,    47,   473,   621,
  2216.     47,   450,    62,   478,   479,   480,   481,   482,   107,    62,
  2217.    339,    54,    59,   462,    74,    62,   491,    64,   564,    93,
  2218.     94,    74,   497,   446,   446,     4,   501,   825,    75,    93,
  2219.    650,   829,    23,   107,  1088,   534,    47,    56,    57,    93,
  2220.    554,   555,   849,    93,    94,   559,    93,    94,   849,    32,
  2221.     97,   849,    62,   873,   500,    47,   854,   107,   533,   534,
  2222.    107,   849,   650,   685,    74,    44,   108,   396,   833,   833,
  2223.     59,    62,    58,   681,   906,    54,   551,    56,    57,    47,
  2224.    534,    58,    93,   558,   831,   602,    75,   604,   605,    47,
  2225.    606,   637,   912,     3,     4,   717,   719,   551,   896,   972,
  2226.     93,    93,    94,    58,   558,     3,     4,   107,    59,    64,
  2227.      3,     4,   534,   722,    94,   107,    32,   402,   403,   404,
  2228.     47,   953,   954,   452,    75,    93,   548,   549,   603,   551,
  2229.     47,    41,   607,    47,   107,    93,   558,  1191,  1192,     9,
  2230.     47,   470,   107,    41,   473,   662,    56,    57,    41,   478,
  2231.    479,   480,   481,   482,     3,     4,   605,    64,    56,    57,
  2232.    606,    54,   491,    56,    57,   107,    93,   606,   497,    58,
  2233.     80,    47,   501,    62,    59,    60,    93,    94,    88,    93,
  2234.   1031,  1087,    80,    47,   108,   699,    93,  1019,    64,  1243,
  2235.     88,   666,    41,     4,     5,    88,    61,   702,   644,    74,
  2236.     59,    60,   707,   708,   533,   967,   711,    56,    57,     3,
  2237.   1008,    47,   666,   662,   130,   131,   132,    93,    94,    94,
  2238.     31,   724,     3,     4,    58,    36,   701,    61,    62,    93,
  2239.   1062,    80,   681,  1287,  1288,    59,    59,    60,   113,    88,
  2240.      3,     4,   110,    54,   666,    56,    57,   701,   794,   165,
  2241.    125,    75,  1306,   101,     3,     4,    62,    93,    94,  1091,
  2242.   1058,   807,    94,   809,  1096,    60,    54,    62,    97,    98,
  2243.    719,     3,     4,    54,    62,    56,    57,    58,    94,   701,
  2244.     54,    93,   796,   797,  1046,   799,    74,    62,    62,  1140,
  2245.   1141,   110,    41,    56,    57,    58,    93,   833,   173,   845,
  2246.     74,   802,    93,   925,   926,    74,   928,    56,    57,    41,
  2247.    824,     3,     4,    47,    58,   790,    60,    58,    62,   794,
  2248.     61,    62,    54,    93,    56,    57,   827,   828,    60,   875,
  2249.      9,   877,    74,   879,     6,     7,    74,   666,    70,    88,
  2250.     12,    74,   856,   108,   819,  1177,  1178,   222,    80,    41,
  2251.    825,   107,    86,    87,   829,    47,    88,    91,    92,    93,
  2252.     94,    93,    54,    35,    56,    57,    59,   968,   969,  1201,
  2253.    971,   825,   701,    45,   849,   829,   851,   107,    70,   854,
  2254.     25,    26,    25,    26,   107,    25,    26,   107,    80,     3,
  2255.      3,     4,     5,     6,     7,   849,    88,   843,    90,    60,
  2256.    854,    93,    94,   825,   107,   827,   828,   829,    83,    84,
  2257.   1242,   108,   887,   918,   887,    58,   701,   108,    58,    62,
  2258.    887,   896,    62,    58,  1256,    59,    60,   849,  1006,  1007,
  2259.    852,   853,   854,   887,   110,   310,   911,     7,   884,     3,
  2260.      4,   107,   896,    56,    57,  1296,     3,     4,    25,    26,
  2261.   1072,   110,     4,   110,   929,     7,   931,   286,    60,    61,
  2262.     93,   790,   929,     3,     4,   887,   110,     7,   982,   107,
  2263.   1321,   107,   347,   974,   896,   929,   107,    41,  1056,  1057,
  2264.    107,    58,    25,    26,    41,    62,   402,   403,   404,    54,
  2265.    819,     6,    56,    57,   110,  1009,   825,    59,    60,    56,
  2266.     57,    41,    54,    93,    56,    57,   929,   929,   954,    59,
  2267.     60,  1273,    60,    61,    54,    58,    56,    57,    70,    62,
  2268.    849,    58,  1142,    60,    88,    62,    47,  1044,    80,  1046,
  2269.     70,    88,  1364,  1008,  1154,    58,  1011,    60,    64,    62,
  2270.     80,  1348,    59,    60,  1011,   262,   263,  1348,    88,    59,
  2271.   1348,    93,   108,    93,  1008,  1056,  1057,  1011,   727,   728,
  2272.    729,  1075,    60,    64,   393,    64,   107,  1189,  1190,   854,
  2273.   1045,    60,  1047,  1019,  1047,    60,  1122,  1082,  1083,  1054,
  2274.   1047,  1054,   911,  1058,  1006,  1007,  1008,  1054,  1011,  1011,
  2275.    465,  1037,    60,  1047,    60,    60,    59,  1046,   107,   107,
  2276.   1054,   107,   931,   107,  1058,  1119,    64,    64,   110,  1231,
  2277.     93,   896,  1087,    59,    62,    59,    59,  1226,  1238,    64,
  2278.   1087,    62,  1244,   107,    75,  1047,   632,   107,     3,     4,
  2279.    107,   107,  1054,  1087,  1056,  1057,  1058,   107,   107,    75,
  2280.    107,   470,    75,    75,   473,   107,   475,   476,   107,   478,
  2281.   1273,     4,     5,    62,  1232,  1233,     3,     4,  1163,    62,
  2282.     59,    62,   491,   110,  1087,  1087,    41,   107,   107,   675,
  2283.    545,  1291,   501,   108,    94,    88,   505,   683,    31,    54,
  2284.   1185,    56,    57,    36,   107,   107,   561,    62,  1134,    23,
  2285.     37,    38,   110,    47,    41,    70,   110,  1319,  1318,    25,
  2286.     26,    54,   531,    56,    57,    80,    32,    54,   537,    56,
  2287.     57,   107,   107,    88,   107,   107,   110,   107,    93,   108,
  2288.    107,  1006,  1007,  1008,    58,   108,    60,   107,    62,  1349,
  2289.     64,  1232,  1233,    59,    60,    34,    64,    64,    64,  1214,
  2290.     64,  1214,  1217,  1218,   107,    93,  1221,  1214,  1221,    93,
  2291.   1217,    93,    93,   108,  1221,   107,   107,  1274,     4,  1234,
  2292.   1214,   110,     6,  1217,  1218,   110,    12,  1221,   107,   107,
  2293.    107,  1056,  1057,  1058,    62,   108,    22,    23,    24,    62,
  2294.     60,    60,   107,    29,    30,   701,    32,  1262,   107,   107,
  2295.    107,     7,  1214,    39,  1299,  1217,  1218,    60,   107,  1221,
  2296.     14,  1276,    64,  1276,    50,   107,    52,   107,  1262,  1276,
  2297.   1232,  1233,    62,    62,    60,   110,    47,  1292,    93,  1292,
  2298.     93,    67,  1276,    60,  1273,  1292,    80,    81,    82,    83,
  2299.     84,    60,    78,    79,    93,   107,   107,   107,  1292,    85,
  2300.   1262,   107,  1317,   107,    15,  1320,     9,  1320,    60,   110,
  2301.     96,   107,    60,  1320,  1276,   107,   107,    96,    60,   865,
  2302.     60,    93,    59,  1317,   107,   111,  1320,    60,   114,    93,
  2303.   1292,   117,   118,  1348,   120,    60,    64,   123,     9,  1164,
  2304.    126,   127,   107,    60,   130,   131,   132,   107,     3,     4,
  2305.      5,     6,     7,     9,  1348,  1317,   107,   143,  1320,   145,
  2306.    146,  1376,   107,  1376,   910,  1234,    60,     0,     0,  1376,
  2307.      0,   365,   329,   919,     2,     4,   849,   163,   164,   165,
  2308.     35,   143,  1376,   153,   930,   143,  1348,   873,     5,     6,
  2309.      7,   121,  1202,  1376,   497,    12,  1213,  1045,   854,    54,
  2310.    843,    56,    57,    58,    10,   191,  1217,  1232,  1233,  1234,
  2311.    644,   838,    39,    39,  1376,    32,   341,   692,    35,    25,
  2312.     26,   863,   912,  1011,   210,   929,    32,   927,    45,   798,
  2313.    381,   444,   577,   836,   220,     5,     6,     7,   170,   534,
  2314.    896,    47,    12,   888,  1047,   396,   302,   102,   103,   104,
  2315.   1341,  1343,   666,    59,    60,    61,    62,   931,    64,    -1,
  2316.    829,    -1,    32,    -1,    -1,    35,    -1,    -1,    -1,    -1,
  2317.     -1,   257,   258,    -1,    -1,    45,    -1,    -1,    -1,  1348,
  2318.     -1,    -1,     4,    -1,     6,     7,    -1,    93,    94,    -1,
  2319.     12,    97,    -1,     3,     4,    -1,    -1,     7,    -1,    -1,
  2320.     -1,   107,    -1,    -1,    -1,    27,   921,    -1,    -1,    31,
  2321.     -1,    -1,   298,    35,    -1,    -1,   302,   468,   304,   305,
  2322.    306,    -1,    -1,    45,  1070,  1071,   312,    -1,    -1,    -1,
  2323.     -1,    41,    54,    -1,    56,    57,    58,    47,  1084,  1085,
  2324.     -1,    -1,   911,   329,    54,     4,    56,    57,     7,   335,
  2325.   1006,  1007,  1008,   339,    -1,    -1,    -1,    -1,    -1,    -1,
  2326.     70,    -1,    -1,    -1,    -1,   351,    -1,    -1,   354,    -1,
  2327.     80,    93,    -1,   359,    -1,    -1,   991,   363,    88,   530,
  2328.     90,   532,   533,    93,    94,    -1,    -1,    -1,    47,    -1,
  2329.     -1,    -1,     3,     4,    -1,    54,     7,    56,    57,    -1,
  2330.   1056,  1057,  1058,    -1,    -1,    -1,    -1,   558,    -1,    -1,
  2331.     -1,    70,   398,   564,   400,    -1,   402,   403,   404,    -1,
  2332.     -1,    80,    -1,    -1,   410,    -1,    -1,    -1,    -1,   415,
  2333.     41,    90,   418,    -1,    93,    94,    47,    -1,  1184,    -1,
  2334.     -1,    -1,  1188,    54,    -1,    56,    57,    -1,    -1,   435,
  2335.     -1,    -1,   438,    -1,    -1,    -1,    -1,   443,   444,    70,
  2336.    446,    -1,    -1,    -1,    -1,    -1,   452,  1036,    -1,    80,
  2337.     78,    79,    80,    81,    82,    83,    84,    88,    -1,    90,
  2338.     -1,    -1,    93,    94,    -1,    -1,   637,    -1,    -1,  1058,
  2339.     -1,    -1,    -1,   479,   480,   481,   482,    -1,    -1,  1245,
  2340.   1246,    -1,  1248,  1249,    -1,    -1,    -1,    -1,  1164,    -1,
  2341.     -1,    -1,    -1,     3,     4,     5,     6,     7,    -1,    -1,
  2342.     10,    -1,    12,  1092,  1093,  1094,  1095,    -1,    -1,    -1,
  2343.     -1,    -1,    -1,    -1,    -1,  1104,    -1,    27,  1284,    -1,
  2344.     -1,    31,    32,    -1,    -1,    35,    -1,    -1,   534,     4,
  2345.    536,    41,     7,    -1,    -1,    45,    52,    47,    54,    -1,
  2346.    546,    -1,   548,   549,    54,   551,    56,    57,    -1,    -1,
  2347.     -1,    -1,   558,    -1,    -1,    -1,  1232,  1233,  1234,    -1,
  2348.     70,   732,  1151,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2349.     80,  1337,    47,    -1,    -1,    -1,    -1,    -1,    88,    54,
  2350.     90,    56,    57,    93,    94,    -1,    -1,    97,   304,   305,
  2351.    306,    -1,    -1,    -1,    -1,    70,   602,   603,   604,   605,
  2352.    606,   607,   118,    -1,    -1,    80,    76,    77,    78,    79,
  2353.     80,    81,    82,    83,    84,    90,    -1,    -1,    93,    94,
  2354.     -1,    -1,    -1,   794,    -1,    -1,    -1,    -1,  1217,  1218,
  2355.    146,    -1,    -1,    -1,    -1,    -1,   807,    -1,   809,    -1,
  2356.     -1,     4,    -1,    -1,     7,  1234,    -1,    -1,    -1,     4,
  2357.      5,     6,     7,    -1,    -1,    10,   662,    12,    -1,    32,
  2358.    666,    -1,   178,    -1,    -1,   671,   672,    -1,   674,    -1,
  2359.    186,   187,    27,  1262,   845,    -1,    31,    32,    -1,    -1,
  2360.     35,    -1,    -1,    -1,    47,    -1,   692,    -1,    -1,    -1,
  2361.     45,    54,    -1,    56,    57,   701,     4,    -1,    -1,    54,
  2362.     -1,    56,    57,    -1,   875,    -1,   877,    70,   879,    -1,
  2363.     -1,    -1,    -1,   719,    -1,    -1,    -1,    80,    -1,    -1,
  2364.     -1,   727,   728,   729,    -1,   896,  1315,    90,  1317,    -1,
  2365.     93,    94,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    47,
  2366.     -1,    -1,    97,    -1,    -1,    -1,    54,    -1,    56,    57,
  2367.     -1,  1340,    -1,    -1,    -1,     4,    -1,    -1,   131,   132,
  2368.     -1,    -1,    70,    12,    -1,  1354,    -1,    -1,    -1,    -1,
  2369.     -1,    -1,    80,    22,    23,    24,    -1,    -1,    -1,    -1,
  2370.     29,    30,    90,    32,   790,    93,    94,     3,     4,    -1,
  2371.     39,     7,   165,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2372.     -1,    50,    -1,    52,   810,    -1,   812,    -1,     4,    -1,
  2373.      6,    60,    -1,   819,    -1,    -1,    12,   823,    67,   825,
  2374.     -1,   827,   828,   829,    -1,    41,    -1,   833,    -1,    -1,
  2375.     79,    27,   548,   549,    -1,    31,    85,    -1,    54,    35,
  2376.     56,    57,    -1,   849,    -1,   851,   852,   853,   854,    45,
  2377.     -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,    54,    -1,
  2378.     56,    57,   111,    -1,    80,    -1,    -1,    -1,   117,   118,
  2379.     -1,    -1,    88,    -1,   123,    -1,    -1,    93,   127,    -1,
  2380.     -1,   130,   131,   132,    -1,    -1,   602,    -1,   604,   605,
  2381.    896,   607,    -1,    -1,   143,    -1,   145,   146,    -1,    -1,
  2382.    416,   417,     4,    -1,     6,     7,   912,    -1,    -1,    -1,
  2383.     12,   427,    -1,   286,   163,   164,   165,    -1,   924,    -1,
  2384.     -1,   927,    -1,   929,    -1,   931,    -1,    -1,   444,    -1,
  2385.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,   454,    -1,
  2386.     -1,    -1,   191,    45,    -1,    47,   662,    -1,    -1,    -1,
  2387.     -1,  1122,    54,    -1,    56,    57,    -1,    -1,    -1,    -1,
  2388.     -1,   210,   968,   969,    -1,   971,    -1,    -1,    70,    -1,
  2389.     -1,   220,    -1,    -1,    -1,    -1,    -1,    -1,    80,    -1,
  2390.     -1,     3,     4,     5,     6,     7,    -1,    -1,    90,    -1,
  2391.     12,    93,    94,  1164,    -1,    -1,    -1,    -1,  1004,  1005,
  2392.   1006,  1007,  1008,   719,  1010,  1011,    -1,    -1,   257,   258,
  2393.     32,    -1,    -1,    35,    -1,    -1,     3,     4,    -1,    41,
  2394.     -1,    -1,    -1,    45,    -1,    47,    -1,    -1,    -1,    -1,
  2395.    403,   404,    54,    -1,    56,    57,    -1,    -1,  1044,  1045,
  2396.   1046,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,   298,
  2397.   1056,  1057,  1058,   302,    41,   304,   305,   306,    80,    -1,
  2398.     47,    -1,   311,   312,    -1,    -1,    88,    54,    90,    56,
  2399.     57,    93,    94,    -1,    -1,    62,    84,    -1,    -1,    -1,
  2400.    329,  1087,    -1,    70,    -1,    -1,    -1,   603,    -1,   605,
  2401.    339,    -1,    -1,    80,   810,    -1,   812,   470,    -1,    -1,
  2402.    473,    88,   351,    -1,    -1,   354,    93,   823,    -1,    -1,
  2403.    359,   827,   828,   121,   363,    -1,   632,   490,   491,  1125,
  2404.   1126,  1127,    -1,    -1,    -1,    -1,    -1,    -1,   501,   378,
  2405.     -1,    -1,    -1,    -1,    -1,    -1,   852,   853,    -1,     3,
  2406.      4,     5,     6,     7,    -1,    -1,   662,    -1,    12,   398,
  2407.     -1,   400,    -1,   402,   403,   404,    -1,    -1,  1164,   675,
  2408.     -1,   410,    -1,    -1,    -1,   681,   415,   683,    32,   418,
  2409.     -1,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  2410.     -1,    45,    -1,    47,    -1,   558,   435,    -1,    -1,   438,
  2411.     54,    -1,    56,    57,   443,   444,    -1,   446,    -1,    -1,
  2412.     -1,    -1,    -1,   452,    -1,    -1,    70,    -1,    -1,    -1,
  2413.     -1,    -1,     4,    -1,     6,     7,    80,    -1,    -1,    -1,
  2414.     12,    -1,    -1,    -1,    88,    -1,  1232,  1233,  1234,    93,
  2415.    479,   480,   481,   482,    -1,    27,    -1,    -1,    -1,    31,
  2416.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    -1,
  2417.     -1,    -1,    -1,    45,     3,     4,     5,     6,     7,    -1,
  2418.     -1,    10,    54,    12,    56,    57,    -1,    -1,  1274,   277,
  2419.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    -1,
  2420.     -1,    -1,    31,    32,    -1,   534,    35,   536,  1004,  1005,
  2421.   1006,  1007,    41,    -1,  1010,    -1,    45,    -1,    -1,   548,
  2422.    549,    93,   551,    -1,    -1,    54,    -1,    56,    57,   558,
  2423.     -1,    -1,     4,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2424.    569,    70,    -1,    -1,    -1,    -1,    -1,    -1,   701,    -1,
  2425.     -1,    80,    -1,    -1,    -1,    -1,    -1,    29,    30,    88,
  2426.   1056,  1057,  1348,     4,    93,     6,     7,    39,    97,   865,
  2427.     -1,    12,    -1,   602,   603,   604,   605,   606,   607,   732,
  2428.     52,    -1,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,
  2429.     31,    -1,   380,   381,    35,    -1,    -1,    -1,    -1,    -1,
  2430.     -1,    -1,    -1,    -1,    45,    -1,    -1,    -1,   396,    -1,
  2431.     -1,    -1,    -1,    54,   910,    56,    57,     4,    -1,     6,
  2432.      7,    -1,    -1,   919,    -1,    12,    -1,    -1,    -1,  1125,
  2433.   1126,  1127,    -1,   662,   930,    -1,    -1,   666,    -1,    -1,
  2434.     27,    -1,   671,   672,    31,   674,    -1,    -1,    35,    -1,
  2435.     -1,   123,   440,    -1,    -1,   127,    -1,    -1,    45,    -1,
  2436.     47,    -1,    -1,   692,    -1,    -1,    -1,    54,    -1,    56,
  2437.     57,   143,   701,    -1,   146,   828,   829,    -1,    -1,    -1,
  2438.    468,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,
  2439.    719,   163,   164,    80,    -1,    -1,    -1,    -1,   727,   728,
  2440.    729,   854,    -1,    90,    -1,    -1,    93,    94,    -1,   497,
  2441.     -1,    -1,   500,    -1,    -1,   503,   504,    -1,   506,   507,
  2442.    508,   509,   510,   511,   512,   513,   514,   515,   516,   517,
  2443.    518,   519,   520,   521,   522,   523,   524,    -1,   210,    -1,
  2444.     -1,    -1,   530,   896,   532,   533,    -1,    -1,   220,  1045,
  2445.   1046,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2446.     -1,   790,    -1,     3,     4,    -1,    -1,     7,    -1,    -1,
  2447.    558,    -1,    -1,    -1,  1070,  1071,   564,    -1,    -1,    -1,
  2448.     -1,   810,    -1,   812,    -1,    -1,    -1,    -1,  1084,  1085,
  2449.    819,   579,   580,    -1,   823,    -1,   825,    -1,   827,   828,
  2450.    829,    41,    -1,    -1,   833,    -1,    -1,     1,    -1,     3,
  2451.      4,     5,     6,     7,    54,    -1,    56,    57,    12,    -1,
  2452.    849,    -1,   851,   852,   853,   854,    -1,    -1,    -1,    -1,
  2453.     70,    -1,    -1,    27,    -1,    -1,    -1,    31,    32,    -1,
  2454.     80,    35,    36,    -1,   873,    -1,    -1,    41,    88,   637,
  2455.     -1,    45,    46,    93,  1007,  1008,   644,    -1,    -1,    -1,
  2456.     54,    -1,    56,    57,    -1,    -1,    60,   896,    62,     3,
  2457.      4,    -1,    -1,     7,    -1,    -1,    70,    -1,    -1,   351,
  2458.     -1,    -1,   354,   912,    -1,    -1,    80,   359,  1184,    -1,
  2459.     -1,    -1,  1188,    -1,    88,   924,    -1,    -1,   927,    93,
  2460.    929,    -1,   931,    -1,  1057,  1058,    -1,    41,    -1,    -1,
  2461.     -1,    -1,   700,    47,   108,    -1,    -1,    -1,    -1,    -1,
  2462.     54,    -1,    56,    57,    -1,    -1,   398,    -1,   400,    -1,
  2463.     -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,   968,
  2464.    969,    -1,   971,   415,   732,    -1,    80,     3,     4,  1245,
  2465.   1246,     7,  1248,  1249,    88,    -1,    90,    -1,    -1,    93,
  2466.     94,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   756,    -1,
  2467.     -1,   443,   444,    -1,   446,  1004,  1005,  1006,  1007,  1008,
  2468.     -1,  1010,  1011,    -1,    -1,    41,    -1,    -1,  1284,    -1,
  2469.     -1,    47,     3,     4,    -1,    -1,     7,    -1,    54,    -1,
  2470.     56,    57,    -1,    -1,    -1,   793,   794,    -1,    -1,    -1,
  2471.     -1,  1164,    -1,    -1,    70,  1044,  1045,  1046,    -1,   807,
  2472.     -1,   809,    -1,    -1,    80,    -1,    -1,  1056,  1057,  1058,
  2473.     41,    -1,    88,    -1,    90,    -1,    -1,    93,    94,    -1,
  2474.     -1,  1337,    -1,    54,    -1,    56,    57,   835,    -1,    -1,
  2475.     -1,    -1,   163,   164,   165,    -1,    -1,   845,  1087,    70,
  2476.     -1,    -1,    -1,     3,     4,     5,     6,     7,    -1,    80,
  2477.     -1,    -1,    12,    -1,    -1,    -1,    -1,    88,    -1,    -1,
  2478.   1233,  1234,    93,    -1,    -1,    -1,    -1,   875,    -1,   877,
  2479.     -1,   879,    32,    -1,    -1,    35,  1125,  1126,  1127,    -1,
  2480.     -1,    41,    -1,    -1,    -1,    45,    -1,    47,   896,    -1,
  2481.     -1,     4,    -1,    -1,    54,    -1,    56,    57,   906,    -1,
  2482.     -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,   916,   917,
  2483.     70,   603,    -1,    -1,    -1,  1164,    29,    30,    -1,    32,
  2484.     80,    -1,    -1,    -1,    -1,    -1,    39,    -1,    88,    23,
  2485.     90,    25,    26,    93,    94,    -1,    -1,    50,    32,    52,
  2486.     -1,    -1,    -1,    -1,    -1,   953,   954,    -1,    -1,   957,
  2487.     -1,    -1,    -1,    -1,     3,     4,    -1,    -1,     7,    -1,
  2488.     -1,    74,    -1,    -1,    58,    59,    60,    61,    62,    -1,
  2489.     64,    -1,    -1,    -1,   666,    -1,    -1,    -1,    -1,   671,
  2490.    672,    -1,   674,  1232,  1233,  1234,    -1,    -1,    -1,     3,
  2491.      4,    -1,    41,     7,    -1,    -1,    -1,    -1,   111,    -1,
  2492.    113,   114,    -1,    -1,   117,    54,    -1,    56,    57,    -1,
  2493.    123,  1019,   125,    -1,   127,    -1,    -1,   130,   131,   132,
  2494.     -1,    70,    -1,    -1,  1032,  1274,    -1,    41,    -1,    -1,
  2495.    143,    80,   145,   146,    -1,    -1,    -1,    -1,    -1,    88,
  2496.     54,    -1,    56,    57,    93,    -1,    -1,    -1,    -1,    -1,
  2497.    163,   164,   165,    -1,  1062,    -1,    70,    -1,    -1,    -1,
  2498.    173,    -1,    -1,    -1,    -1,    -1,    80,   398,    -1,   400,
  2499.   1078,   402,   403,   404,    88,    -1,    -1,    -1,   191,    93,
  2500.      1,     3,     4,  1091,   415,     7,    -1,    -1,  1096,    -1,
  2501.   1098,    -1,    -1,    -1,    -1,    -1,    -1,   210,    -1,  1348,
  2502.     -1,     4,    23,    -1,    25,    26,    -1,   220,    -1,    -1,
  2503.     -1,    32,   443,    -1,  1122,    -1,    -1,    -1,    -1,    41,
  2504.     -1,    -1,    -1,    -1,    -1,    -1,    29,    30,    -1,    32,
  2505.     -1,    -1,    54,    -1,    56,    57,    39,    58,    59,    60,
  2506.     61,    62,    -1,    64,    -1,    -1,    -1,    50,    70,    52,
  2507.     -1,    -1,    -1,    -1,     3,     4,  1164,    -1,    80,    -1,
  2508.    852,   853,    -1,    -1,    -1,    -1,    88,    -1,    -1,  1177,
  2509.   1178,    93,    -1,   286,    -1,    -1,    -1,    -1,  1186,  1187,
  2510.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   302,
  2511.     -1,    -1,    41,  1201,    -1,    -1,    -1,   310,    -1,   312,
  2512.     -1,    -1,    -1,    -1,    -1,    54,    -1,    56,    57,    -1,
  2513.     -1,  1219,    -1,    62,   117,    -1,   329,    -1,    -1,    -1,
  2514.    123,    70,   335,    -1,   127,    -1,    -1,   130,   131,   132,
  2515.     -1,    80,   924,    -1,  1242,   927,    -1,   929,   351,    88,
  2516.    143,   354,   145,   146,    93,    -1,   359,    -1,  1256,    -1,
  2517.     -1,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2518.    163,   164,   165,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2519.     -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,    32,
  2520.     -1,    -1,    35,    -1,    -1,   398,    -1,   400,   191,   402,
  2521.    403,   404,    45,    -1,    -1,    -1,    -1,   410,    -1,    -1,
  2522.     -1,    54,   415,    56,    57,   418,    -1,   210,    -1,    -1,
  2523.     -1,    -1,  1004,  1005,    -1,    -1,    -1,   220,  1010,  1011,
  2524.     -1,     4,    -1,     6,     7,    -1,    -1,    -1,    -1,    12,
  2525.    443,   444,    -1,   446,    -1,    -1,    -1,    -1,    -1,    -1,
  2526.    671,   672,    -1,   674,    -1,    -1,    -1,    -1,    12,    -1,
  2527.     -1,    -1,    35,  1045,    -1,    -1,  1364,   470,    22,    23,
  2528.    473,    -1,    45,    -1,    47,    29,    30,    -1,    32,    -1,
  2529.    701,    54,    -1,    56,    57,    -1,   489,   490,   491,    -1,
  2530.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,   501,    -1,
  2531.      4,     5,     6,     7,    -1,  1087,    60,    80,    12,    -1,
  2532.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    90,   311,   312,
  2533.     93,    94,    -1,    27,    -1,    -1,    -1,    31,    32,     3,
  2534.      4,    35,    -1,    -1,    -1,    -1,     3,     4,    -1,    -1,
  2535.     -1,    45,   545,  1125,  1126,  1127,    -1,    -1,    -1,    -1,
  2536.     54,    -1,    56,    57,    -1,   558,    -1,   111,   351,   113,
  2537.    114,   354,    -1,    -1,    -1,    -1,   359,    41,    -1,   123,
  2538.     74,   125,   126,   127,    41,    -1,   130,   131,   132,    -1,
  2539.     54,    -1,    56,    57,    -1,   378,    60,    54,    -1,    56,
  2540.     57,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,   602,
  2541.    603,   604,   605,    70,    -1,   398,    80,   400,    -1,   402,
  2542.    403,   404,    -1,    80,    88,    -1,    -1,   410,    -1,    93,
  2543.     -1,    88,   415,    -1,     1,   418,    93,    -1,    -1,    -1,
  2544.     -1,   852,   853,   854,    73,    74,    75,    76,    77,    78,
  2545.     79,    80,    81,    82,    83,    84,    23,    -1,    25,    26,
  2546.    443,   444,    -1,   446,    -1,    32,    -1,    -1,    -1,   662,
  2547.     -1,    -1,    -1,   666,    -1,    -1,   220,    -1,   671,   672,
  2548.     -1,   674,    -1,    -1,    -1,   896,    -1,    -1,    -1,    -1,
  2549.     -1,    58,    59,    60,    61,    62,     1,    64,     3,     4,
  2550.      5,     6,     7,     8,     9,    10,    11,    12,   701,    -1,
  2551.     -1,    -1,    -1,   924,   258,    -1,    -1,    -1,    -1,    -1,
  2552.     -1,    -1,    27,    28,    29,    30,    31,    32,    33,    -1,
  2553.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,   732,
  2554.     45,    -1,    -1,    -1,    49,    50,    51,    52,    53,    54,
  2555.     -1,    56,    57,    -1,    -1,    -1,    61,    -1,   302,    -1,
  2556.    304,   305,    67,   546,    -1,    70,    -1,    -1,    -1,    -1,
  2557.     -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,
  2558.     -1,    86,    87,    88,    -1,   329,     3,     4,    93,    -1,
  2559.     -1,   335,    97,  1004,  1005,  1006,  1007,  1008,    -1,  1010,
  2560.     -1,    -1,   107,   347,   109,    -1,    -1,   351,    -1,    -1,
  2561.    354,    -1,    -1,    -1,    -1,   359,    -1,    -1,    -1,   602,
  2562.    603,   604,   605,    -1,    41,    -1,    -1,    -1,    -1,    -1,
  2563.     -1,    -1,    -1,    -1,   827,   828,   829,    54,    -1,    56,
  2564.     57,    -1,    -1,    -1,    -1,  1056,  1057,  1058,    32,    -1,
  2565.     -1,    -1,    -1,    70,     4,     5,     6,     7,    -1,   852,
  2566.    853,   854,    12,    80,    -1,    -1,    50,    -1,    -1,    -1,
  2567.     -1,    88,    -1,    -1,    -1,    -1,    93,    27,    -1,   662,
  2568.     -1,    31,    32,   666,    -1,    35,    -1,    -1,   671,   672,
  2569.     -1,   674,    -1,    -1,   438,    45,    -1,    -1,    -1,    -1,
  2570.     -1,     3,     4,   896,    54,    -1,    56,    57,    -1,   304,
  2571.    305,   306,    -1,    -1,  1125,  1126,  1127,    -1,   701,    -1,
  2572.     -1,   465,    -1,    -1,    -1,    -1,    -1,    -1,   921,    -1,
  2573.     -1,   924,    -1,   117,   927,    -1,   929,    -1,    -1,    41,
  2574.     -1,    -1,    -1,    50,    -1,    -1,   130,   131,   132,    -1,
  2575.     -1,    -1,    54,  1164,    56,    57,    -1,    -1,    -1,    -1,
  2576.     -1,   145,    -1,    -1,    -1,    -1,    -1,    74,    70,    -1,
  2577.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    80,   163,
  2578.    164,   165,    -1,    -1,    -1,    -1,    88,    94,    -1,    -1,
  2579.     -1,    93,   536,    -1,    -1,    -1,    -1,    -1,   991,    -1,
  2580.     -1,   545,   546,    -1,   548,   549,    -1,   191,    -1,    -1,
  2581.    117,  1004,  1005,  1006,  1007,  1008,    -1,  1010,  1011,    -1,
  2582.     -1,  1232,  1233,  1234,    -1,    -1,    63,    64,    65,    66,
  2583.     67,    68,    69,    70,    71,    72,    73,    74,   145,    76,
  2584.     77,    78,    79,    80,    81,    82,    83,    84,    -1,    -1,
  2585.    833,  1044,  1045,  1046,    -1,    -1,   163,   164,   165,    -1,
  2586.     -1,    -1,   606,  1056,  1057,  1058,   173,    -1,    -1,   852,
  2587.    853,   854,    -1,    -1,   258,    -1,    -1,     4,     5,     6,
  2588.      7,    -1,    -1,    -1,   191,    12,    -1,    -1,    -1,    -1,
  2589.    873,    -1,    -1,    -1,  1087,    -1,    -1,    -1,    -1,    -1,
  2590.     27,    -1,    -1,    -1,    31,    32,    -1,    -1,    35,    -1,
  2591.     -1,    -1,    -1,   896,    -1,   222,    -1,    -1,    45,    -1,
  2592.    304,   305,   306,    -1,    -1,    -1,    -1,    54,   312,    56,
  2593.     57,    -1,  1125,  1126,  1127,    -1,    -1,     4,    -1,     6,
  2594.      7,   924,    -1,    -1,   927,    12,   929,    -1,    -1,    -1,
  2595.     -1,    -1,    -1,   548,   549,    -1,   551,    -1,    -1,    -1,
  2596.     27,    -1,    -1,   558,    31,    -1,    -1,    -1,    35,    -1,
  2597.     -1,  1164,    -1,    -1,    -1,   719,    -1,    -1,    45,    -1,
  2598.     -1,    -1,    -1,   727,   728,   729,    -1,    54,    -1,    56,
  2599.     57,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2600.     -1,    -1,    -1,   310,    -1,   312,    -1,   602,    -1,   604,
  2601.    605,    -1,   607,    -1,   398,    -1,   400,    -1,   402,   403,
  2602.    404,  1004,  1005,  1006,  1007,  1008,   410,  1010,  1011,    -1,
  2603.     -1,   415,    -1,    -1,   418,    -1,    -1,    -1,    -1,  1232,
  2604.   1233,  1234,    68,    69,    70,    71,    72,    73,    74,    75,
  2605.     76,    77,    78,    79,    80,    81,    82,    83,    84,   443,
  2606.     -1,  1044,  1045,  1046,    -1,    -1,   810,   662,   812,    -1,
  2607.     -1,    -1,    -1,  1056,  1057,  1058,    -1,    -1,    -1,   823,
  2608.     -1,  1274,     4,     5,     6,     7,    -1,    -1,    10,    -1,
  2609.     12,   398,    -1,   400,    -1,   402,   403,   404,    -1,    -1,
  2610.     -1,    -1,    -1,   410,  1087,    27,    -1,    -1,   415,    31,
  2611.     32,   418,    -1,    35,    -1,    -1,    -1,    -1,    -1,    -1,
  2612.     -1,    -1,    -1,    45,   719,    47,    -1,    -1,    -1,    -1,
  2613.     -1,    -1,    54,    10,    56,    57,   443,    -1,    -1,    -1,
  2614.     -1,    -1,  1125,  1126,  1127,    -1,    -1,    -1,    70,    -1,
  2615.     -1,    -1,   536,    -1,    -1,    -1,    -1,    -1,    80,    -1,
  2616.     -1,    -1,    -1,    -1,   548,   549,    -1,   551,    90,    -1,
  2617.     -1,    93,    94,    -1,   558,    97,    -1,    -1,    -1,    -1,
  2618.     -1,  1164,    -1,   927,    -1,    62,    63,    64,    65,    66,
  2619.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  2620.     77,    78,    79,    80,    81,    82,    83,    84,    -1,    -1,
  2621.     -1,    -1,    -1,    -1,    -1,   810,    -1,   812,   602,    -1,
  2622.    604,   605,    -1,   607,   968,   969,    -1,   971,   823,    -1,
  2623.     -1,    -1,   827,   828,   829,    71,    72,    73,    74,    75,
  2624.     76,    77,    78,    79,    80,    81,    82,    83,    84,  1232,
  2625.   1233,  1234,    -1,    -1,   561,    -1,    -1,   852,   853,   854,
  2626.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  2627.     77,    78,    79,    80,    81,    82,    83,    84,   662,    -1,
  2628.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   671,   672,    -1,
  2629.    674,  1274,    -1,    -1,    -1,   602,    -1,   604,   605,    -1,
  2630.     -1,   896,    72,    73,    74,    75,    76,    77,    78,    79,
  2631.     80,    81,    82,    83,    84,    -1,     1,   701,     3,     4,
  2632.      5,     6,     7,    -1,    -1,    -1,    -1,    12,    -1,    -1,
  2633.     -1,    -1,    -1,    -1,    -1,   719,    -1,    -1,    -1,    -1,
  2634.     -1,    -1,    27,   727,   728,   729,    31,    32,    -1,    -1,
  2635.     35,    36,    -1,    -1,    -1,   662,    41,    -1,    -1,    -1,
  2636.     45,    46,    -1,    -1,   671,   672,    -1,   674,    -1,    54,
  2637.     -1,    56,    57,    -1,    -1,    60,    -1,    62,    -1,    -1,
  2638.     -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  2639.     -1,    -1,    -1,    -1,   701,    80,    -1,    -1,    -1,    -1,
  2640.     -1,    -1,    -1,    88,    -1,    -1,    -1,    -1,    93,  1004,
  2641.   1005,  1006,  1007,  1008,    -1,  1010,    -1,    -1,    -1,    -1,
  2642.     -1,    -1,    -1,   108,    -1,    -1,   810,    -1,   812,    -1,
  2643.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   823,
  2644.     -1,    -1,    -1,   827,   828,   829,    -1,    -1,    -1,     1,
  2645.     -1,     3,     4,     5,     6,     7,     8,     9,    -1,    11,
  2646.     12,  1056,  1057,  1058,    -1,    -1,    -1,    -1,   852,   853,
  2647.    854,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2648.     32,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2649.     42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,
  2650.     52,    53,    54,    -1,    56,    57,    58,    -1,    60,    61,
  2651.     -1,    -1,   896,    -1,    -1,    67,    -1,    -1,    70,    -1,
  2652.     -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,    32,
  2653.   1125,  1126,  1127,    -1,    86,    87,    88,    -1,    -1,    -1,
  2654.    924,    93,    -1,    -1,    -1,   852,   853,   854,    -1,    -1,
  2655.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,
  2656.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  2657.     73,    74,    75,    76,    77,    78,    79,    80,    81,    82,
  2658.     83,    84,    -1,    -1,   968,   969,    -1,   971,    -1,   896,
  2659.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2660.     -1,     1,    -1,     3,     4,    -1,     6,     7,     8,     9,
  2661.     -1,    11,    12,    -1,   921,    -1,    -1,   924,    -1,    -1,
  2662.   1004,  1005,  1006,  1007,  1008,    -1,  1010,    27,    28,    29,
  2663.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2664.     40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,
  2665.     50,    51,    52,    53,    54,    -1,    56,    57,    58,    -1,
  2666.   1044,    61,  1046,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2667.     70,    -1,  1056,  1057,  1058,    -1,    -1,    -1,    78,    79,
  2668.     80,    -1,    -1,    -1,   991,    -1,    86,    87,    88,    -1,
  2669.     -1,    -1,    -1,    93,    94,    -1,    -1,  1004,  1005,  1006,
  2670.   1007,  1008,    -1,  1010,    -1,    -1,    -1,    -1,   108,   109,
  2671.     -1,    -1,    63,    64,    65,    66,    67,    68,    69,    70,
  2672.     71,    72,    73,    74,    75,    76,    77,    78,    79,    80,
  2673.     81,    82,    83,    84,    -1,    -1,    -1,  1044,    -1,  1046,
  2674.     -1,  1125,  1126,  1127,    -1,    -1,    -1,    -1,    -1,  1056,
  2675.   1057,  1058,    -1,    -1,    -1,     1,    -1,     3,     4,   110,
  2676.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  2677.     -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,    -1,
  2678.   1164,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2679.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    45,
  2680.     -1,    -1,    -1,    49,    50,    51,    52,    53,    54,    -1,
  2681.     56,    57,    58,    -1,    -1,    61,    -1,    -1,  1125,  1126,
  2682.   1127,    67,    -1,    -1,    70,     1,    -1,     3,     4,     5,
  2683.      6,     7,    78,    79,    80,    -1,    12,    -1,    -1,    -1,
  2684.     86,    87,    88,    -1,    -1,    -1,    -1,    93,  1232,  1233,
  2685.   1234,    27,    -1,    -1,    -1,    31,    32,  1164,    -1,    35,
  2686.     -1,    -1,   108,   109,    -1,    41,    -1,    -1,    -1,    45,
  2687.     -1,    -1,    48,    -1,    -1,    -1,    -1,    -1,    54,    -1,
  2688.     56,    57,    -1,    -1,    60,    -1,    -1,    -1,    -1,    -1,
  2689.   1274,    -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,
  2690.     -1,    -1,    -1,    -1,    80,    -1,    -1,    -1,    -1,    -1,
  2691.     -1,    -1,    88,    -1,    -1,    -1,    -1,    93,    -1,    -1,
  2692.     -1,    -1,    98,    -1,    -1,  1232,  1233,  1234,    -1,     1,
  2693.     -1,     3,     4,     5,     6,     7,     8,     9,    -1,    11,
  2694.     12,    13,    -1,    15,    16,    17,    18,    19,    20,    21,
  2695.     22,    23,    24,    25,    26,    27,    28,    29,    30,    31,
  2696.     32,    33,    -1,    35,    -1,    37,    38,  1274,    40,    41,
  2697.     42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,
  2698.     52,    53,    54,    -1,    56,    57,    58,    -1,    60,    61,
  2699.     -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,
  2700.     -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,
  2701.     -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,
  2702.     -1,    93,    -1,    95,    -1,    -1,    -1,    -1,    -1,    -1,
  2703.     -1,    -1,    -1,    -1,    -1,    -1,   108,   109,     1,    -1,
  2704.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2705.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2706.     23,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  2707.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2708.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  2709.     53,    54,    -1,    56,    57,    58,    -1,    60,    61,    -1,
  2710.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  2711.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  2712.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,    -1,
  2713.     93,     1,    95,     3,     4,     5,     6,     7,     8,     9,
  2714.     10,    11,    12,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  2715.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2716.     30,    31,    32,    33,    -1,    35,    -1,    37,    38,    -1,
  2717.     40,    41,    42,    43,    -1,    45,    -1,    47,    -1,    49,
  2718.     50,    51,    52,    53,    54,    -1,    56,    57,    58,    -1,
  2719.     -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2720.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2721.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,
  2722.     90,    -1,    -1,    93,    94,    -1,     1,    97,     3,     4,
  2723.      5,     6,     7,     8,     9,    10,    11,    12,    -1,   109,
  2724.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2725.     -1,    -1,    27,    28,    29,    30,    31,    32,    33,    -1,
  2726.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2727.     45,    -1,    47,    -1,    49,    50,    51,    52,    53,    54,
  2728.     -1,    56,    57,    58,    -1,    -1,    61,    -1,    -1,    -1,
  2729.     -1,    -1,    67,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  2730.     -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,
  2731.     -1,    86,    87,    88,    -1,    90,    -1,    -1,    93,    94,
  2732.     -1,     1,    97,     3,     4,    -1,     6,     7,     8,     9,
  2733.     -1,    11,    12,    -1,   109,    -1,    -1,    -1,    -1,    19,
  2734.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2735.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2736.     40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,
  2737.     50,    51,    52,    53,    54,    -1,    56,    57,    58,    -1,
  2738.     -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2739.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2740.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,     1,
  2741.     -1,     3,     4,    93,     6,     7,     8,     9,    -1,    11,
  2742.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   108,   109,
  2743.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2744.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2745.     42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,
  2746.     52,    53,    54,    -1,    56,    57,    58,    -1,    -1,    61,
  2747.     -1,    -1,    -1,    -1,     1,    67,    -1,     4,    70,     6,
  2748.      7,    -1,    -1,    -1,    -1,    12,    78,    79,    80,    -1,
  2749.     -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,
  2750.     27,    93,    94,    -1,    31,    -1,    -1,    -1,    35,    -1,
  2751.     37,    38,    -1,    -1,    -1,    -1,    -1,   109,    45,    -1,
  2752.     47,    -1,    -1,    -1,    -1,    -1,    -1,    54,    -1,    56,
  2753.     57,    -1,    59,    -1,    -1,    -1,    63,    64,    65,    66,
  2754.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  2755.     77,    78,    79,    80,    81,    82,    83,    -1,    -1,    86,
  2756.     87,    88,    -1,     1,    91,     3,     4,    94,     6,     7,
  2757.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2758.     -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2759.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2760.     38,    -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,
  2761.     -1,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
  2762.     58,    -1,    -1,    61,    -1,    -1,    -1,    -1,    -1,    67,
  2763.     -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2764.     78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,
  2765.     88,     1,    -1,     3,     4,    93,     6,     7,     8,     9,
  2766.     -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2767.     -1,   109,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2768.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2769.     40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,
  2770.     50,    51,    52,    53,    54,    -1,    56,    57,    58,    -1,
  2771.     -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2772.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2773.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,     1,
  2774.     -1,     3,     4,    93,     6,     7,     8,     9,    -1,    11,
  2775.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,
  2776.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2777.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2778.     42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,
  2779.     52,    53,    54,    -1,    56,    57,    -1,    -1,    -1,    61,
  2780.     62,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,
  2781.     -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,
  2782.     -1,    -1,    -1,    -1,    86,    87,    88,     1,    -1,     3,
  2783.      4,    93,     6,     7,     8,     9,    -1,    11,    12,    -1,
  2784.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,
  2785.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2786.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2787.     -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,    53,
  2788.     54,    -1,    56,    57,    58,    -1,    -1,    61,    -1,    -1,
  2789.     -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,    -1,
  2790.     -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,
  2791.     -1,    -1,    86,    87,    88,     1,    -1,     3,     4,    93,
  2792.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  2793.     -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,    -1,
  2794.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2795.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    45,
  2796.     -1,    -1,    -1,    49,    50,    51,    52,    53,    54,    -1,
  2797.     56,    57,    -1,    -1,    60,    61,    -1,    -1,    -1,    -1,
  2798.     -1,    67,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,
  2799.     -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,    -1,
  2800.     86,    87,    88,     1,    -1,     3,     4,    93,     6,     7,
  2801.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2802.     -1,    -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,    27,
  2803.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2804.     38,    -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,
  2805.     -1,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
  2806.     -1,    -1,    -1,    61,    -1,    -1,    -1,    -1,    -1,    67,
  2807.     -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2808.     78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,
  2809.     88,     1,    -1,     3,     4,    93,     6,     7,     8,     9,
  2810.     -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,   107,
  2811.     -1,   109,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2812.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2813.     40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,
  2814.     50,    51,    52,    53,    54,    -1,    56,    57,    -1,    -1,
  2815.     -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2816.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2817.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,     1,
  2818.     -1,     3,     4,    93,     6,     7,     8,     9,    -1,    11,
  2819.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,
  2820.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2821.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2822.     42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,
  2823.     52,    53,    54,    -1,    56,    57,    -1,    -1,    -1,    61,
  2824.     -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,
  2825.     -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,
  2826.     -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,     3,
  2827.      4,    93,     6,     7,     8,     9,    -1,    11,    12,    -1,
  2828.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,
  2829.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2830.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2831.     -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,    53,
  2832.     54,    -1,    56,    57,    -1,    -1,    -1,    61,    -1,    -1,
  2833.     -1,    -1,    -1,    67,    -1,    -1,    70,     1,    -1,     3,
  2834.      4,     5,     6,     7,    78,    79,    80,    -1,    12,    -1,
  2835.     -1,    -1,    86,    87,    88,    -1,    -1,    -1,    -1,    93,
  2836.     -1,    -1,    -1,    27,    -1,    -1,    -1,    31,    32,    -1,
  2837.     -1,    35,    36,    -1,    -1,   109,   110,    41,    -1,    -1,
  2838.     -1,    45,    46,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2839.     54,    -1,    56,    57,    -1,    -1,    60,     1,    62,     3,
  2840.      4,     5,     6,     7,    -1,    -1,    70,    -1,    12,    -1,
  2841.     -1,    -1,    -1,    -1,    -1,    -1,    80,    -1,    -1,    -1,
  2842.     -1,    -1,    -1,    27,    88,    -1,    -1,    31,    32,    93,
  2843.     -1,    35,    36,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  2844.     -1,    45,    46,    -1,   108,    -1,    -1,    -1,    -1,    -1,
  2845.     54,    -1,    56,    57,    -1,    -1,    60,    -1,    62,    -1,
  2846.     -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,
  2847.     -1,    -1,    -1,    -1,    -1,    -1,    80,    -1,    -1,    -1,
  2848.     -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,    -1,    93,
  2849.     -1,    -1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2850.     -1,    11,    12,    13,   108,    15,    16,    17,    18,    19,
  2851.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  2852.     30,    31,    32,    33,    -1,    35,    -1,    37,    38,    -1,
  2853.     40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,
  2854.     50,    51,    52,    53,    54,    -1,    56,    57,    58,    -1,
  2855.     60,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2856.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2857.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,
  2858.     -1,    -1,    -1,    93,    -1,    95,    -1,    -1,    -1,    -1,
  2859.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   108,   109,
  2860.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2861.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2862.     23,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  2863.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2864.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  2865.     53,    54,    -1,    56,    57,    58,    -1,    60,    61,    -1,
  2866.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  2867.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  2868.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,    -1,
  2869.     93,    -1,    95,    -1,    -1,     3,     4,     5,     6,     7,
  2870.      8,     9,    -1,    11,    12,    13,   109,    15,    16,    17,
  2871.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  2872.     28,    29,    30,    31,    32,    33,    -1,    35,    -1,    37,
  2873.     38,    -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,
  2874.     -1,    49,    50,    51,    52,    53,    54,    -1,    56,    57,
  2875.     58,    -1,    60,    61,    -1,    -1,    -1,    -1,    -1,    67,
  2876.     -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2877.     78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,
  2878.     88,    -1,    -1,    -1,    -1,    93,    -1,    95,    -1,    -1,
  2879.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2880.     13,   109,    15,    16,    17,    18,    19,    20,    21,    22,
  2881.     23,    24,    25,    26,    27,    28,    29,    30,    31,    32,
  2882.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2883.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  2884.     53,    54,    -1,    56,    57,    -1,    -1,    60,    61,    -1,
  2885.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  2886.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  2887.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,    -1,
  2888.     93,    -1,    95,     3,     4,     5,     6,     7,     8,     9,
  2889.     10,    11,    12,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  2890.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  2891.     30,    31,    32,    33,    -1,    35,    -1,    37,    38,    -1,
  2892.     40,    41,    42,    43,    -1,    45,    -1,    47,    -1,    49,
  2893.     50,    51,    52,    53,    54,    -1,    56,    57,    -1,    -1,
  2894.     -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,
  2895.     70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,
  2896.     80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,
  2897.     90,    -1,    -1,    93,    94,    -1,    -1,    97,     3,     4,
  2898.      5,     6,     7,     8,     9,    10,    11,    12,    -1,   109,
  2899.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2900.     -1,    -1,    27,    28,    29,    30,    31,    32,    33,    -1,
  2901.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2902.     45,    -1,    47,    -1,    49,    50,    51,    52,    53,    54,
  2903.     -1,    56,    57,    -1,    -1,    -1,    61,    -1,    -1,    -1,
  2904.     -1,    -1,    67,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  2905.     -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,
  2906.     -1,    86,    87,    88,    -1,    90,    -1,    -1,    93,    94,
  2907.      3,     4,    97,     6,     7,     8,     9,    -1,    11,    12,
  2908.     -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,
  2909.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2910.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2911.     43,    -1,    45,    -1,    47,    -1,    49,    50,    51,    52,
  2912.     53,    54,    -1,    56,    57,    -1,    -1,    -1,    -1,    -1,
  2913.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  2914.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  2915.     -1,    -1,    -1,    86,    87,    88,    -1,    90,    -1,    -1,
  2916.     93,    94,     3,     4,    -1,     6,     7,     8,     9,    -1,
  2917.     11,    12,    -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  2918.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2919.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2920.     41,    42,    43,    -1,    45,    -1,    47,    -1,    49,    50,
  2921.     51,    52,    53,    54,    -1,    56,    57,    -1,    -1,    -1,
  2922.     -1,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,
  2923.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,
  2924.     -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,    90,
  2925.     -1,    -1,    93,    94,     3,     4,    -1,     6,     7,     8,
  2926.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   109,    -1,
  2927.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2928.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2929.     -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,
  2930.     49,    50,    51,    52,    53,    54,    -1,    56,    57,    -1,
  2931.     -1,    -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,
  2932.     -1,    70,    -1,    -1,    -1,    -1,    75,    -1,    -1,    78,
  2933.     79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,
  2934.     -1,    -1,     3,     4,    93,     6,     7,     8,     9,    -1,
  2935.     11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2936.    109,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2937.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2938.     41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,
  2939.     51,    52,    53,    54,    -1,    56,    57,    -1,    -1,    60,
  2940.     61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,
  2941.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,
  2942.     -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,
  2943.      3,     4,    93,     6,     7,     8,     9,    -1,    11,    12,
  2944.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,
  2945.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2946.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2947.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  2948.     53,    54,    -1,    56,    57,    -1,    -1,    -1,    61,    -1,
  2949.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  2950.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  2951.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,     3,     4,
  2952.     93,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  2953.     -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  2954.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2955.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2956.     45,    -1,    -1,    -1,    49,    50,    51,    52,    53,    54,
  2957.     -1,    56,    57,    -1,    -1,    -1,    61,    -1,    -1,    -1,
  2958.     -1,    -1,    67,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  2959.     -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,
  2960.     -1,    86,    87,    88,    -1,    -1,     3,     4,    93,     6,
  2961.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  2962.     -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,
  2963.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2964.     37,    38,    -1,    40,    41,    42,    43,    -1,    45,    -1,
  2965.     -1,    -1,    49,    50,    51,    52,    53,    54,    -1,    56,
  2966.     57,    58,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2967.     67,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,
  2968.     -1,    78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,
  2969.     87,    88,    -1,    -1,     3,     4,    93,     6,     7,     8,
  2970.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  2971.     -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2972.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2973.     -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,
  2974.     49,    50,    51,    52,    53,    54,    -1,    56,    57,    -1,
  2975.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    67,    -1,
  2976.     -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,
  2977.     79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,
  2978.     -1,    -1,    -1,    -1,    93,    94,     3,     4,    -1,     6,
  2979.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  2980.    109,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2981.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2982.     37,    38,    -1,    40,    41,    42,    43,    -1,    45,    -1,
  2983.     -1,    -1,    49,    50,    51,    52,    53,    54,    -1,    56,
  2984.     57,    -1,    -1,    -1,    61,    -1,    -1,    -1,    -1,    -1,
  2985.     67,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,
  2986.     -1,    78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,
  2987.     87,    88,    -1,    -1,     3,     4,    93,     6,     7,     8,
  2988.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  2989.     -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2990.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2991.     -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,
  2992.     49,    50,    51,    52,    53,    54,    -1,    56,    57,    -1,
  2993.     -1,    -1,    61,    -1,    -1,    -1,    -1,    -1,    67,    -1,
  2994.     -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,
  2995.     79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,
  2996.     -1,    -1,     3,     4,    93,     6,     7,     8,     9,    -1,
  2997.     11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2998.    109,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2999.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  3000.     41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,
  3001.     51,    52,    53,    54,    -1,    56,    57,    -1,    -1,    -1,
  3002.     61,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,
  3003.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,
  3004.     -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,
  3005.      3,     4,    93,     6,     7,     8,     9,    -1,    11,    12,
  3006.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,
  3007.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3008.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3009.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  3010.     53,    54,    -1,    56,    57,    -1,    -1,    -1,    61,    -1,
  3011.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  3012.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  3013.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,     3,     4,
  3014.     93,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  3015.     -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  3016.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  3017.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  3018.     45,    -1,    -1,    -1,    49,    50,    51,    52,    53,    54,
  3019.     -1,    56,    57,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3020.     -1,    -1,    67,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  3021.     -1,    -1,    -1,    78,    79,    80,    -1,    -1,    -1,    -1,
  3022.     -1,    86,    87,    88,    -1,    -1,     3,     4,    93,     6,
  3023.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3024.     -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,
  3025.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  3026.     37,    38,    -1,    40,    41,    42,    43,    -1,    45,    -1,
  3027.     -1,    -1,    49,    50,    51,    52,    53,    54,    -1,    56,
  3028.     57,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3029.     67,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,
  3030.     -1,    78,    79,    80,    -1,    -1,    -1,    -1,    -1,    86,
  3031.     87,    88,    -1,    -1,     3,     4,    93,     6,     7,     8,
  3032.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  3033.     -1,    -1,   109,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3034.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3035.     -1,    40,    41,    42,    43,    -1,    45,    -1,    -1,    -1,
  3036.     49,    50,    51,    52,    53,    54,    -1,    56,    57,    -1,
  3037.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    67,    -1,
  3038.     -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,
  3039.     79,    80,    -1,    -1,    -1,    -1,    -1,    86,    87,    88,
  3040.     -1,    -1,     3,     4,    93,     6,     7,     8,     9,    -1,
  3041.     11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3042.    109,    -1,    -1,    -1,    -1,    -1,    27,    28,    -1,    -1,
  3043.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  3044.     41,    42,    43,    -1,    45,    -1,    -1,    -1,    49,    50,
  3045.     51,    52,    53,    54,    -1,    56,    57,    -1,    -1,    -1,
  3046.     -1,    -1,    -1,    -1,    -1,    -1,    67,    -1,    -1,    70,
  3047.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    78,    79,    80,
  3048.     -1,    -1,    -1,    -1,    -1,    86,    87,    88,    -1,    -1,
  3049.      3,     4,    93,     6,     7,     8,     9,    -1,    11,    12,
  3050.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   109,    -1,
  3051.     -1,    -1,    -1,    -1,    27,    28,    -1,    -1,    31,    -1,
  3052.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3053.     43,    -1,    45,    -1,    -1,    -1,    49,    50,    51,    52,
  3054.     53,    54,    -1,    56,    57,    -1,    -1,    -1,    -1,    -1,
  3055.     -1,    -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    -1,
  3056.     -1,    -1,    -1,    -1,    -1,    78,    79,    80,    -1,    -1,
  3057.     -1,    -1,    -1,    86,    87,    88,    -1,    -1,    -1,     1,
  3058.     93,     3,     4,     5,     6,     7,    -1,    -1,    -1,    -1,
  3059.     12,    -1,    -1,    -1,    -1,    -1,   109,    -1,    -1,    -1,
  3060.     -1,    -1,    -1,    25,    26,    27,    -1,    -1,    -1,    31,
  3061.     32,    -1,    -1,    35,    -1,    -1,    -1,    39,    -1,    41,
  3062.     -1,    -1,    44,    45,    46,     1,    48,     3,     4,     5,
  3063.      6,     7,    54,    -1,    56,    57,    12,    -1,    60,    -1,
  3064.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
  3065.     -1,    27,    -1,    -1,    -1,    31,    32,    -1,    80,    35,
  3066.     -1,    -1,    -1,    -1,    -1,    41,    88,    -1,    -1,    45,
  3067.     -1,    93,    -1,    -1,    -1,    -1,    98,    99,    54,    -1,
  3068.     56,    57,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  3069.     -1,    12,    -1,    -1,    70,    -1,    -1,    -1,    -1,     3,
  3070.      4,     5,     6,     7,    80,    -1,    27,    -1,    12,    -1,
  3071.     31,    32,    88,    -1,    35,    -1,    -1,    93,    -1,    -1,
  3072.     41,    -1,    -1,    27,    45,    -1,    47,    31,    32,    -1,
  3073.     -1,    35,    -1,    54,    -1,    56,    57,    41,    -1,    -1,
  3074.     -1,    45,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,
  3075.     54,    -1,    56,    57,    -1,    -1,    60,    -1,    -1,    80,
  3076.     -1,    -1,    -1,    -1,    -1,    -1,    70,    88,    -1,    90,
  3077.     -1,    -1,    93,    94,    -1,    -1,    80,     3,     4,     5,
  3078.      6,     7,    -1,    -1,    88,    -1,    12,    -1,    -1,    93,
  3079.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3080.     -1,    27,    -1,    -1,    -1,    31,    32,    -1,    -1,    35,
  3081.     -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,    45,
  3082.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    54,    -1,
  3083.     56,    57,    -1,    -1,    -1,    -1,    62,    -1,    -1,    -1,
  3084.     -1,    -1,    -1,    -1,    70,    -1,     3,     4,     5,     6,
  3085.      7,    -1,    -1,    10,    80,    12,    -1,    -1,    -1,    -1,
  3086.     -1,    -1,    88,    -1,    -1,    -1,    -1,    93,    -1,    -1,
  3087.     27,    -1,    -1,    -1,    31,    32,    -1,    -1,    35,    -1,
  3088.     -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,    45,    -1,
  3089.     -1,    -1,     3,     4,     5,     6,     7,    54,    -1,    56,
  3090.     57,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3091.     -1,    -1,    -1,    70,    -1,    -1,    27,    -1,    -1,    -1,
  3092.     31,    32,    -1,    80,    35,    -1,    -1,    -1,    -1,    -1,
  3093.     41,    88,    -1,    -1,    45,    -1,    93,    -1,     3,     4,
  3094.      5,     6,     7,    54,    -1,    56,    57,    12,    -1,    60,
  3095.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,
  3096.     -1,    -1,    27,    -1,    -1,    -1,    31,    32,    -1,    80,
  3097.     35,    -1,    -1,    -1,    -1,    -1,    41,    88,    -1,    -1,
  3098.     45,    -1,    93,    -1,    -1,    -1,    -1,    -1,    -1,    54,
  3099.     -1,    56,    57,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3100.     -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,
  3101.     -1,    -1,    -1,    -1,    -1,    80,    -1,    -1,    -1,    -1,
  3102.     -1,    -1,    -1,    88,    -1,    59,    -1,    -1,    93,    63,
  3103.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3104.     74,    75,    76,    77,    78,    79,    80,    81,    82,    83,
  3105.     84,    62,    63,    64,    65,    66,    67,    68,    69,    70,
  3106.     71,    72,    73,    74,    75,    76,    77,    78,    79,    80,
  3107.     81,    82,    83,    84,    62,    63,    64,    65,    66,    67,
  3108.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  3109.     78,    79,    80,    81,    82,    83,    84,    63,    64,    65,
  3110.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  3111.     76,    77,    78,    79,    80,    81,    82,    83,    84,    69,
  3112.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3113.     80,    81,    82,    83,    84,    70,    71,    72,    73,    74,
  3114.     75,    76,    77,    78,    79,    80,    81,    82,    83,    84
  3115. };
  3116. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  3117. #line 3 "/usr/local/lib/bison.simple"
  3118.  
  3119. /* Skeleton output parser for bison,
  3120.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  3121.  
  3122.    This program is free software; you can redistribute it and/or modify
  3123.    it under the terms of the GNU General Public License as published by
  3124.    the Free Software Foundation; either version 1, or (at your option)
  3125.    any later version.
  3126.  
  3127.    This program is distributed in the hope that it will be useful,
  3128.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  3129.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3130.    GNU General Public License for more details.
  3131.  
  3132.    You should have received a copy of the GNU General Public License
  3133.    along with this program; if not, write to the Free Software
  3134.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  3135.  
  3136.  
  3137. #ifndef alloca
  3138. #ifdef __GNUC__
  3139. #define alloca __builtin_alloca
  3140. #else /* not GNU C.  */
  3141. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  3142. #include <alloca.h>
  3143. #else /* not sparc */
  3144. #if defined (MSDOS) && !defined (__TURBOC__)
  3145. #include <malloc.h>
  3146. #else /* not MSDOS, or __TURBOC__ */
  3147. #if defined(_AIX)
  3148. #include <malloc.h>
  3149.  #pragma alloca
  3150. #else /* not MSDOS, __TURBOC__, or _AIX */
  3151. #ifdef __hpux
  3152. #ifdef __cplusplus
  3153. extern "C" {
  3154. void *alloca (unsigned int);
  3155. };
  3156. #else /* not __cplusplus */
  3157. void *alloca ();
  3158. #endif /* not __cplusplus */
  3159. #endif /* __hpux */
  3160. #endif /* not _AIX */
  3161. #endif /* not MSDOS, or __TURBOC__ */
  3162. #endif /* not sparc.  */
  3163. #endif /* not GNU C.  */
  3164. #endif /* alloca not defined.  */
  3165.  
  3166. /* This is the parser code that is written into each bison parser
  3167.   when the %semantic_parser declaration is not specified in the grammar.
  3168.   It was written by Richard Stallman by simplifying the hairy parser
  3169.   used when %semantic_parser is specified.  */
  3170.  
  3171. /* Note: there must be only one dollar sign in this file.
  3172.    It is replaced by the list of actions, each action
  3173.    as one case of the switch.  */
  3174.  
  3175. #define yyerrok        (yyerrstatus = 0)
  3176. #define yyclearin    (yychar = YYEMPTY)
  3177. #define YYEMPTY        -2
  3178. #define YYEOF        0
  3179. #define YYACCEPT    return(0)
  3180. #define YYABORT     return(1)
  3181. #define YYERROR        goto yyerrlab1
  3182. /* Like YYERROR except do call yyerror.
  3183.    This remains here temporarily to ease the
  3184.    transition to the new meaning of YYERROR, for GCC.
  3185.    Once GCC version 2 has supplanted version 1, this can go.  */
  3186. #define YYFAIL        goto yyerrlab
  3187. #define YYRECOVERING()  (!!yyerrstatus)
  3188. #define YYBACKUP(token, value) \
  3189. do                                \
  3190.   if (yychar == YYEMPTY && yylen == 1)                \
  3191.     { yychar = (token), yylval = (value);            \
  3192.       yychar1 = YYTRANSLATE (yychar);                \
  3193.       YYPOPSTACK;                        \
  3194.       goto yybackup;                        \
  3195.     }                                \
  3196.   else                                \
  3197.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  3198. while (0)
  3199.  
  3200. #define YYTERROR    1
  3201. #define YYERRCODE    256
  3202.  
  3203. #ifndef YYPURE
  3204. #define YYLEX        yylex()
  3205. #endif
  3206.  
  3207. #ifdef YYPURE
  3208. #ifdef YYLSP_NEEDED
  3209. #define YYLEX        yylex(&yylval, &yylloc)
  3210. #else
  3211. #define YYLEX        yylex(&yylval)
  3212. #endif
  3213. #endif
  3214.  
  3215. /* If nonreentrant, generate the variables here */
  3216.  
  3217. #ifndef YYPURE
  3218.  
  3219. int    yychar;            /*  the lookahead symbol        */
  3220. YYSTYPE    yylval;            /*  the semantic value of the        */
  3221.                 /*  lookahead symbol            */
  3222.  
  3223. #ifdef YYLSP_NEEDED
  3224. YYLTYPE yylloc;            /*  location data for the lookahead    */
  3225.                 /*  symbol                */
  3226. #endif
  3227.  
  3228. int yynerrs;            /*  number of parse errors so far       */
  3229. #endif  /* not YYPURE */
  3230.  
  3231. #if YYDEBUG != 0
  3232. int yydebug;            /*  nonzero means print parse trace    */
  3233. /* Since this is uninitialized, it does not stop multiple parsers
  3234.    from coexisting.  */
  3235. #endif
  3236.  
  3237. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  3238.  
  3239. #ifndef    YYINITDEPTH
  3240. #define YYINITDEPTH 200
  3241. #endif
  3242.  
  3243. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  3244.     (effective only if the built-in stack extension method is used).  */
  3245.  
  3246. #if YYMAXDEPTH == 0
  3247. #undef YYMAXDEPTH
  3248. #endif
  3249.  
  3250. #ifndef YYMAXDEPTH
  3251. #define YYMAXDEPTH 10000
  3252. #endif
  3253.  
  3254. /* Prevent warning if -Wstrict-prototypes.  */
  3255. #ifdef __GNUC__
  3256. int yyparse (void);
  3257. #endif
  3258.  
  3259. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  3260. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  3261. #else                /* not GNU C or C++ */
  3262. #ifndef __cplusplus
  3263.  
  3264. /* This is the most reliable way to avoid incompatibilities
  3265.    in available built-in functions on various systems.  */
  3266. static void
  3267. __yy_bcopy (from, to, count)
  3268.      char *from;
  3269.      char *to;
  3270.      int count;
  3271. {
  3272.   register char *f = from;
  3273.   register char *t = to;
  3274.   register int i = count;
  3275.  
  3276.   while (i-- > 0)
  3277.     *t++ = *f++;
  3278. }
  3279.  
  3280. #else /* __cplusplus */
  3281.  
  3282. /* This is the most reliable way to avoid incompatibilities
  3283.    in available built-in functions on various systems.  */
  3284. static void
  3285. __yy_bcopy (char *from, char *to, int count)
  3286. {
  3287.   register char *f = from;
  3288.   register char *t = to;
  3289.   register int i = count;
  3290.  
  3291.   while (i-- > 0)
  3292.     *t++ = *f++;
  3293. }
  3294.  
  3295. #endif
  3296. #endif
  3297.  
  3298. #line 184 "/usr/local/lib/bison.simple"
  3299.  
  3300. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  3301.    into yyparse.  The argument should have type void *.
  3302.    It should actually point to an object.
  3303.    Grammar actions can access the variable by casting it
  3304.    to the proper pointer type.  */
  3305.  
  3306. #ifdef YYPARSE_PARAM
  3307. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  3308. #else
  3309. #define YYPARSE_PARAM
  3310. #define YYPARSE_PARAM_DECL
  3311. #endif
  3312.  
  3313. int
  3314. yyparse(YYPARSE_PARAM)
  3315.      YYPARSE_PARAM_DECL
  3316. {
  3317.   register int yystate;
  3318.   register int yyn;
  3319.   register short *yyssp;
  3320.   register YYSTYPE *yyvsp;
  3321.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  3322.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  3323.  
  3324.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  3325.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  3326.  
  3327.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  3328.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  3329.  
  3330. #ifdef YYLSP_NEEDED
  3331.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  3332.   YYLTYPE *yyls = yylsa;
  3333.   YYLTYPE *yylsp;
  3334.  
  3335. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  3336. #else
  3337. #define YYPOPSTACK   (yyvsp--, yyssp--)
  3338. #endif
  3339.  
  3340.   int yystacksize = YYINITDEPTH;
  3341.  
  3342. #ifdef YYPURE
  3343.   int yychar;
  3344.   YYSTYPE yylval;
  3345.   int yynerrs;
  3346. #ifdef YYLSP_NEEDED
  3347.   YYLTYPE yylloc;
  3348. #endif
  3349. #endif
  3350.  
  3351.   YYSTYPE yyval;        /*  the variable used to return        */
  3352.                 /*  semantic values from the action    */
  3353.                 /*  routines                */
  3354.  
  3355.   int yylen;
  3356.  
  3357. #if YYDEBUG != 0
  3358.   if (yydebug)
  3359.     fprintf(stderr, "Starting parse\n");
  3360. #endif
  3361.  
  3362.   yystate = 0;
  3363.   yyerrstatus = 0;
  3364.   yynerrs = 0;
  3365.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  3366.  
  3367.   /* Initialize stack pointers.
  3368.      Waste one element of value and location stack
  3369.      so that they stay on the same level as the state stack.
  3370.      The wasted elements are never initialized.  */
  3371.  
  3372.   yyssp = yyss - 1;
  3373.   yyvsp = yyvs;
  3374. #ifdef YYLSP_NEEDED
  3375.   yylsp = yyls;
  3376. #endif
  3377.  
  3378. /* Push a new state, which is found in  yystate  .  */
  3379. /* In all cases, when you get here, the value and location stacks
  3380.    have just been pushed. so pushing a state here evens the stacks.  */
  3381. yynewstate:
  3382.  
  3383.   *++yyssp = yystate;
  3384.  
  3385.   if (yyssp >= yyss + yystacksize - 1)
  3386.     {
  3387.       /* Give user a chance to reallocate the stack */
  3388.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  3389.       YYSTYPE *yyvs1 = yyvs;
  3390.       short *yyss1 = yyss;
  3391. #ifdef YYLSP_NEEDED
  3392.       YYLTYPE *yyls1 = yyls;
  3393. #endif
  3394.  
  3395.       /* Get the current used size of the three stacks, in elements.  */
  3396.       int size = yyssp - yyss + 1;
  3397.  
  3398. #ifdef yyoverflow
  3399.       /* Each stack pointer address is followed by the size of
  3400.      the data in use in that stack, in bytes.  */
  3401. #ifdef YYLSP_NEEDED
  3402.       /* This used to be a conditional around just the two extra args,
  3403.      but that might be undefined if yyoverflow is a macro.  */
  3404.       yyoverflow("parser stack overflow",
  3405.          &yyss1, size * sizeof (*yyssp),
  3406.          &yyvs1, size * sizeof (*yyvsp),
  3407.          &yyls1, size * sizeof (*yylsp),
  3408.          &yystacksize);
  3409. #else
  3410.       yyoverflow("parser stack overflow",
  3411.          &yyss1, size * sizeof (*yyssp),
  3412.          &yyvs1, size * sizeof (*yyvsp),
  3413.          &yystacksize);
  3414. #endif
  3415.  
  3416.       yyss = yyss1; yyvs = yyvs1;
  3417. #ifdef YYLSP_NEEDED
  3418.       yyls = yyls1;
  3419. #endif
  3420. #else /* no yyoverflow */
  3421.       /* Extend the stack our own way.  */
  3422.       if (yystacksize >= YYMAXDEPTH)
  3423.     {
  3424.       yyerror("parser stack overflow");
  3425.       return 2;
  3426.     }
  3427.       yystacksize *= 2;
  3428.       if (yystacksize > YYMAXDEPTH)
  3429.     yystacksize = YYMAXDEPTH;
  3430.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  3431.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  3432.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  3433.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  3434. #ifdef YYLSP_NEEDED
  3435.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  3436.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  3437. #endif
  3438. #endif /* no yyoverflow */
  3439.  
  3440.       yyssp = yyss + size - 1;
  3441.       yyvsp = yyvs + size - 1;
  3442. #ifdef YYLSP_NEEDED
  3443.       yylsp = yyls + size - 1;
  3444. #endif
  3445.  
  3446. #if YYDEBUG != 0
  3447.       if (yydebug)
  3448.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  3449. #endif
  3450.  
  3451.       if (yyssp >= yyss + yystacksize - 1)
  3452.     YYABORT;
  3453.     }
  3454.  
  3455. #if YYDEBUG != 0
  3456.   if (yydebug)
  3457.     fprintf(stderr, "Entering state %d\n", yystate);
  3458. #endif
  3459.  
  3460.   goto yybackup;
  3461.  yybackup:
  3462.  
  3463. /* Do appropriate processing given the current state.  */
  3464. /* Read a lookahead token if we need one and don't already have one.  */
  3465. /* yyresume: */
  3466.  
  3467.   /* First try to decide what to do without reference to lookahead token.  */
  3468.  
  3469.   yyn = yypact[yystate];
  3470.   if (yyn == YYFLAG)
  3471.     goto yydefault;
  3472.  
  3473.   /* Not known => get a lookahead token if don't already have one.  */
  3474.  
  3475.   /* yychar is either YYEMPTY or YYEOF
  3476.      or a valid token in external form.  */
  3477.  
  3478.   if (yychar == YYEMPTY)
  3479.     {
  3480. #if YYDEBUG != 0
  3481.       if (yydebug)
  3482.     fprintf(stderr, "Reading a token: ");
  3483. #endif
  3484.       yychar = YYLEX;
  3485.     }
  3486.  
  3487.   /* Convert token to internal form (in yychar1) for indexing tables with */
  3488.  
  3489.   if (yychar <= 0)        /* This means end of input. */
  3490.     {
  3491.       yychar1 = 0;
  3492.       yychar = YYEOF;        /* Don't call YYLEX any more */
  3493.  
  3494. #if YYDEBUG != 0
  3495.       if (yydebug)
  3496.     fprintf(stderr, "Now at end of input.\n");
  3497. #endif
  3498.     }
  3499.   else
  3500.     {
  3501.       yychar1 = YYTRANSLATE(yychar);
  3502.  
  3503. #if YYDEBUG != 0
  3504.       if (yydebug)
  3505.     {
  3506.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  3507.       /* Give the individual parser a way to print the precise meaning
  3508.          of a token, for further debugging info.  */
  3509. #ifdef YYPRINT
  3510.       YYPRINT (stderr, yychar, yylval);
  3511. #endif
  3512.       fprintf (stderr, ")\n");
  3513.     }
  3514. #endif
  3515.     }
  3516.  
  3517.   yyn += yychar1;
  3518.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  3519.     goto yydefault;
  3520.  
  3521.   yyn = yytable[yyn];
  3522.  
  3523.   /* yyn is what to do for this token type in this state.
  3524.      Negative => reduce, -yyn is rule number.
  3525.      Positive => shift, yyn is new state.
  3526.        New state is final state => don't bother to shift,
  3527.        just return success.
  3528.      0, or most negative number => error.  */
  3529.  
  3530.   if (yyn < 0)
  3531.     {
  3532.       if (yyn == YYFLAG)
  3533.     goto yyerrlab;
  3534.       yyn = -yyn;
  3535.       goto yyreduce;
  3536.     }
  3537.   else if (yyn == 0)
  3538.     goto yyerrlab;
  3539.  
  3540.   if (yyn == YYFINAL)
  3541.     YYACCEPT;
  3542.  
  3543.   /* Shift the lookahead token.  */
  3544.  
  3545. #if YYDEBUG != 0
  3546.   if (yydebug)
  3547.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  3548. #endif
  3549.  
  3550.   /* Discard the token being shifted unless it is eof.  */
  3551.   if (yychar != YYEOF)
  3552.     yychar = YYEMPTY;
  3553.  
  3554.   *++yyvsp = yylval;
  3555. #ifdef YYLSP_NEEDED
  3556.   *++yylsp = yylloc;
  3557. #endif
  3558.  
  3559.   /* count tokens shifted since error; after three, turn off error status.  */
  3560.   if (yyerrstatus) yyerrstatus--;
  3561.  
  3562.   yystate = yyn;
  3563.   goto yynewstate;
  3564.  
  3565. /* Do the default action for the current state.  */
  3566. yydefault:
  3567.  
  3568.   yyn = yydefact[yystate];
  3569.   if (yyn == 0)
  3570.     goto yyerrlab;
  3571.  
  3572. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  3573. yyreduce:
  3574.   yylen = yyr2[yyn];
  3575.   if (yylen > 0)
  3576.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  3577.  
  3578. #if YYDEBUG != 0
  3579.   if (yydebug)
  3580.     {
  3581.       int i;
  3582.  
  3583.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  3584.            yyn, yyrline[yyn]);
  3585.  
  3586.       /* Print the symbols being reduced, and their result.  */
  3587.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  3588.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  3589.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  3590.     }
  3591. #endif
  3592.  
  3593.  
  3594.   switch (yyn) {
  3595.  
  3596. case 2:
  3597. #line 292 "parse.y"
  3598. {
  3599.           /* In case there were missing closebraces,
  3600.              get us back to the global binding level.  */
  3601.           while (! global_bindings_p ())
  3602.             poplevel (0, 0, 0);
  3603.           finish_file ();
  3604.         ;
  3605.     break;}
  3606. case 3:
  3607. #line 306 "parse.y"
  3608. { yyval.ttype = NULL_TREE; ;
  3609.     break;}
  3610. case 4:
  3611. #line 307 "parse.y"
  3612. { yyval.ttype = NULL_TREE; ;
  3613.     break;}
  3614. case 5:
  3615. #line 309 "parse.y"
  3616. { yyval.ttype = NULL_TREE; ;
  3617.     break;}
  3618. case 8:
  3619. #line 318 "parse.y"
  3620. { have_extern_spec = 1;
  3621.           used_extern_spec = 0;
  3622.           yyval.ttype = NULL_TREE; ;
  3623.     break;}
  3624. case 9:
  3625. #line 323 "parse.y"
  3626. { have_extern_spec = 0; ;
  3627.     break;}
  3628. case 12:
  3629. #line 332 "parse.y"
  3630. { if (pending_lang_change) do_pending_lang_change(); ;
  3631.     break;}
  3632. case 13:
  3633. #line 334 "parse.y"
  3634. { if (! toplevel_bindings_p () && ! pseudo_global_level_p())
  3635.           pop_everything ();
  3636.         prefix_attributes = NULL_TREE; ;
  3637.     break;}
  3638. case 14:
  3639. #line 341 "parse.y"
  3640. { if (pending_inlines) do_pending_inlines (); ;
  3641.     break;}
  3642. case 15:
  3643. #line 343 "parse.y"
  3644. { if (pending_inlines) do_pending_inlines (); ;
  3645.     break;}
  3646. case 16:
  3647. #line 345 "parse.y"
  3648. { if (pending_inlines) do_pending_inlines (); ;
  3649.     break;}
  3650. case 18:
  3651. #line 348 "parse.y"
  3652. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  3653.           assemble_asm (yyvsp[-2].ttype); ;
  3654.     break;}
  3655. case 19:
  3656. #line 351 "parse.y"
  3657. { pop_lang_context (); ;
  3658.     break;}
  3659. case 20:
  3660. #line 353 "parse.y"
  3661. { if (pending_inlines) do_pending_inlines ();
  3662.           pop_lang_context (); ;
  3663.     break;}
  3664. case 21:
  3665. #line 356 "parse.y"
  3666. { if (pending_inlines) do_pending_inlines ();
  3667.           pop_lang_context (); ;
  3668.     break;}
  3669. case 22:
  3670. #line 359 "parse.y"
  3671. { push_namespace (yyvsp[-1].ttype); ;
  3672.     break;}
  3673. case 23:
  3674. #line 361 "parse.y"
  3675. { pop_namespace (); ;
  3676.     break;}
  3677. case 24:
  3678. #line 363 "parse.y"
  3679. { push_namespace (NULL_TREE); ;
  3680.     break;}
  3681. case 25:
  3682. #line 365 "parse.y"
  3683. { pop_namespace (); ;
  3684.     break;}
  3685. case 26:
  3686. #line 367 "parse.y"
  3687. { do_namespace_alias (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3688.     break;}
  3689. case 27:
  3690. #line 369 "parse.y"
  3691. { do_toplevel_using_decl (yyvsp[-1].ttype); ;
  3692.     break;}
  3693. case 28:
  3694. #line 371 "parse.y"
  3695. { do_using_directive (yyvsp[-1].ttype); ;
  3696.     break;}
  3697. case 29:
  3698. #line 376 "parse.y"
  3699. { yyval.ttype = yyvsp[0].ttype; ;
  3700.     break;}
  3701. case 30:
  3702. #line 378 "parse.y"
  3703. { yyval.ttype = yyvsp[0].ttype; ;
  3704.     break;}
  3705. case 31:
  3706. #line 380 "parse.y"
  3707. { yyval.ttype = yyvsp[0].ttype; ;
  3708.     break;}
  3709. case 34:
  3710. #line 387 "parse.y"
  3711. { yyval.ttype = yyvsp[0].ttype; ;
  3712.     break;}
  3713. case 35:
  3714. #line 389 "parse.y"
  3715. { yyval.ttype = yyvsp[0].ttype; ;
  3716.     break;}
  3717. case 36:
  3718. #line 394 "parse.y"
  3719. { push_lang_context (yyvsp[0].ttype); ;
  3720.     break;}
  3721. case 37:
  3722. #line 396 "parse.y"
  3723. { if (current_lang_name != yyvsp[0].ttype)
  3724.             cp_error ("use of linkage spec `%D' is different from previous spec `%D'", yyvsp[0].ttype, current_lang_name);
  3725.           pop_lang_context (); push_lang_context (yyvsp[0].ttype); ;
  3726.     break;}
  3727. case 38:
  3728. #line 403 "parse.y"
  3729. { begin_template_parm_list (); ;
  3730.     break;}
  3731. case 39:
  3732. #line 405 "parse.y"
  3733. { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
  3734.     break;}
  3735. case 40:
  3736. #line 410 "parse.y"
  3737. { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
  3738.     break;}
  3739. case 41:
  3740. #line 412 "parse.y"
  3741. { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3742.     break;}
  3743. case 42:
  3744. #line 417 "parse.y"
  3745.           yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
  3746.          ttpa:
  3747.           if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
  3748.             sorry ("signature as template type parameter");
  3749.           else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
  3750.             pedwarn ("template type parameters must use the keyword `class'");
  3751.         ;
  3752.     break;}
  3753. case 43:
  3754. #line 426 "parse.y"
  3755. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
  3756.     break;}
  3757. case 44:
  3758. #line 438 "parse.y"
  3759. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  3760.     break;}
  3761. case 45:
  3762. #line 440 "parse.y"
  3763. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  3764.     break;}
  3765. case 47:
  3766. #line 446 "parse.y"
  3767. { warning ("use of `overload' is an anachronism"); ;
  3768.     break;}
  3769. case 48:
  3770. #line 450 "parse.y"
  3771. { declare_overloaded (yyvsp[0].ttype); ;
  3772.     break;}
  3773. case 49:
  3774. #line 452 "parse.y"
  3775. { declare_overloaded (yyvsp[0].ttype); ;
  3776.     break;}
  3777. case 50:
  3778. #line 459 "parse.y"
  3779. { yychar = '{'; goto template1; ;
  3780.     break;}
  3781. case 52:
  3782. #line 462 "parse.y"
  3783. { yychar = '{'; goto template1; ;
  3784.     break;}
  3785. case 54:
  3786. #line 465 "parse.y"
  3787. { yychar = ':'; goto template1; ;
  3788.     break;}
  3789. case 56:
  3790. #line 468 "parse.y"
  3791. {
  3792.           yychar = ':';
  3793.         template1:
  3794.           if (current_aggr == signature_type_node)
  3795.             sorry ("template type defining a signature");
  3796.           /* Maybe pedantic warning for union?
  3797.              How about an enum? :-)  */
  3798.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
  3799.           reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3800.           yychar = YYEMPTY;
  3801.         ;
  3802.     break;}
  3803. case 58:
  3804. #line 481 "parse.y"
  3805. {
  3806.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3807.           /* declare $2 as template name with $1 parm list */
  3808.         ;
  3809.     break;}
  3810. case 59:
  3811. #line 486 "parse.y"
  3812. {
  3813.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3814.           /* declare $2 as template name with $1 parm list */
  3815.         ;
  3816.     break;}
  3817. case 60:
  3818. #line 493 "parse.y"
  3819. {
  3820.           tree d;
  3821.           int momentary;
  3822.           int def = (yyvsp[0].itype != ';');
  3823.           momentary = suspend_momentary ();
  3824.           d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
  3825.                   yyvsp[-3].ttype);
  3826.           cplus_decl_attributes (d, yyvsp[-1].ttype, prefix_attributes);
  3827.           cp_finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0, 0);
  3828.           end_template_decl (yyvsp[-5].ttype, d, 0, def);
  3829.           if (def)
  3830.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
  3831.           resume_momentary (momentary);
  3832.         ;
  3833.     break;}
  3834. case 61:
  3835. #line 510 "parse.y"
  3836. {
  3837.           tree d;
  3838.           int momentary;
  3839.           int def = (yyvsp[0].itype != ';');
  3840.  
  3841.           current_declspecs = yyvsp[-5].ttype;
  3842.           momentary = suspend_momentary ();
  3843.           d = start_decl (yyvsp[-4].ttype, current_declspecs,
  3844.                   0, yyvsp[-3].ttype);
  3845.           cplus_decl_attributes (d, yyvsp[-1].ttype, prefix_attributes);
  3846.           cp_finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0, 0);
  3847.           end_template_decl (yyvsp[-6].ttype, d, 0, def);
  3848.           if (def)
  3849.             {
  3850.               reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
  3851.               yychar = YYEMPTY;
  3852.             }
  3853.           note_list_got_semicolon (yyvsp[-5].ttype);
  3854.           resume_momentary (momentary);
  3855.         ;
  3856.     break;}
  3857. case 62:
  3858. #line 531 "parse.y"
  3859. {
  3860.           int def = (yyvsp[0].itype != ';');
  3861.           tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
  3862.           cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
  3863.           end_template_decl (yyvsp[-3].ttype, d, 0, def);
  3864.           if (def)
  3865.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
  3866.         ;
  3867.     break;}
  3868. case 63:
  3869. #line 540 "parse.y"
  3870. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3871.     break;}
  3872. case 64:
  3873. #line 541 "parse.y"
  3874. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3875.     break;}
  3876. case 65:
  3877. #line 544 "parse.y"
  3878. { yyval.itype = '{'; ;
  3879.     break;}
  3880. case 66:
  3881. #line 545 "parse.y"
  3882. { yyval.itype = ':'; ;
  3883.     break;}
  3884. case 67:
  3885. #line 546 "parse.y"
  3886. { yyval.itype = ';'; ;
  3887.     break;}
  3888. case 68:
  3889. #line 547 "parse.y"
  3890. { yyval.itype = '='; ;
  3891.     break;}
  3892. case 69:
  3893. #line 548 "parse.y"
  3894. { yyval.itype = RETURN; ;
  3895.     break;}
  3896. case 70:
  3897. #line 553 "parse.y"
  3898. {;
  3899.     break;}
  3900. case 71:
  3901. #line 555 "parse.y"
  3902. {;
  3903.     break;}
  3904. case 72:
  3905. #line 558 "parse.y"
  3906. { tree d;
  3907.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3908.           cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
  3909.         ;
  3910.     break;}
  3911. case 73:
  3912. #line 563 "parse.y"
  3913. {
  3914.           note_list_got_semicolon (yyval.ttype);
  3915.         ;
  3916.     break;}
  3917. case 74:
  3918. #line 568 "parse.y"
  3919. { tree d;
  3920.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3921.           cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
  3922.           note_list_got_semicolon (yyval.ttype);
  3923.         ;
  3924.     break;}
  3925. case 75:
  3926. #line 574 "parse.y"
  3927. { pedwarn ("empty declaration"); ;
  3928.     break;}
  3929. case 77:
  3930. #line 577 "parse.y"
  3931. {
  3932.         tree t = yyval.ttype;
  3933.         shadow_tag (t);
  3934.         if (TREE_CODE (t) == TREE_LIST
  3935.         && TREE_PURPOSE (t) == NULL_TREE)
  3936.           {
  3937.         t = TREE_VALUE (t);
  3938.         if (IS_AGGR_TYPE (t)
  3939.             && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
  3940.           {
  3941.             if (CLASSTYPE_USE_TEMPLATE (t) == 0)
  3942.               SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
  3943.             else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
  3944.               error ("override declaration for already-expanded template");
  3945.           }
  3946.           }
  3947.         note_list_got_semicolon (yyval.ttype);
  3948.       ;
  3949.     break;}
  3950. case 81:
  3951. #line 602 "parse.y"
  3952. {
  3953.           finish_function (lineno, 1, 0);
  3954.           /* finish_function performs these three statements:
  3955.  
  3956.              expand_end_bindings (getdecls (), 1, 0);
  3957.              poplevel (1, 1, 0);
  3958.  
  3959.              expand_end_bindings (0, 0, 0);
  3960.              poplevel (0, 0, 1);
  3961.              */
  3962.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3963.         ;
  3964.     break;}
  3965. case 82:
  3966. #line 615 "parse.y"
  3967. {
  3968.           finish_function (lineno, 1, 0);
  3969.           /* finish_function performs these three statements:
  3970.  
  3971.              expand_end_bindings (getdecls (), 1, 0);
  3972.              poplevel (1, 1, 0);
  3973.  
  3974.              expand_end_bindings (0, 0, 0);
  3975.              poplevel (0, 0, 1);
  3976.              */
  3977.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3978.         ;
  3979.     break;}
  3980. case 83:
  3981. #line 628 "parse.y"
  3982. { finish_function (lineno, 0, 0);
  3983.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3984.     break;}
  3985. case 84:
  3986. #line 631 "parse.y"
  3987. { finish_function (lineno, 0, 0);
  3988.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3989.     break;}
  3990. case 85:
  3991. #line 634 "parse.y"
  3992. { finish_function (lineno, 0, 0);
  3993.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3994.     break;}
  3995. case 86:
  3996. #line 637 "parse.y"
  3997. {;
  3998.     break;}
  3999. case 87:
  4000. #line 639 "parse.y"
  4001. {;
  4002.     break;}
  4003. case 88:
  4004. #line 641 "parse.y"
  4005. {;
  4006.     break;}
  4007. case 89:
  4008. #line 646 "parse.y"
  4009. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4010.             YYERROR1;
  4011.           reinit_parse_for_function ();
  4012.           yyval.ttype = NULL_TREE; ;
  4013.     break;}
  4014. case 90:
  4015. #line 651 "parse.y"
  4016. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4017.             YYERROR1;
  4018.           reinit_parse_for_function ();
  4019.           yyval.ttype = NULL_TREE; ;
  4020.     break;}
  4021. case 91:
  4022. #line 656 "parse.y"
  4023. { if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
  4024.             YYERROR1;
  4025.           reinit_parse_for_function ();
  4026.           yyval.ttype = NULL_TREE; ;
  4027.     break;}
  4028. case 92:
  4029. #line 661 "parse.y"
  4030. { start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
  4031.           reinit_parse_for_function (); ;
  4032.     break;}
  4033. case 93:
  4034. #line 669 "parse.y"
  4035. {
  4036.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-5].ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
  4037.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-5].ttype), yyval.ttype, yyvsp[0].ttype);
  4038.          rest_of_mdef:
  4039.           if (! yyval.ttype)
  4040.             YYERROR1;
  4041.           if (yychar == YYEMPTY)
  4042.             yychar = YYLEX;
  4043.           reinit_parse_for_method (yychar, yyval.ttype); ;
  4044.     break;}
  4045. case 94:
  4046. #line 679 "parse.y"
  4047. {
  4048.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-3].ttype),
  4049.                      empty_parms (), yyvsp[-1].ttype);
  4050.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-3].ttype), yyval.ttype, yyvsp[0].ttype);
  4051.           goto rest_of_mdef;
  4052.         ;
  4053.     break;}
  4054. case 95:
  4055. #line 686 "parse.y"
  4056. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4057.     break;}
  4058. case 96:
  4059. #line 688 "parse.y"
  4060. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4061.     break;}
  4062. case 97:
  4063. #line 690 "parse.y"
  4064. { yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4065.     break;}
  4066. case 98:
  4067. #line 694 "parse.y"
  4068. {
  4069.           if (! current_function_parms_stored)
  4070.             store_parm_decls ();
  4071.           yyval.ttype = yyvsp[0].ttype;
  4072.         ;
  4073.     break;}
  4074. case 99:
  4075. #line 702 "parse.y"
  4076. { store_return_init (yyval.ttype, yyvsp[0].ttype); ;
  4077.     break;}
  4078. case 100:
  4079. #line 704 "parse.y"
  4080. { store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
  4081.     break;}
  4082. case 101:
  4083. #line 706 "parse.y"
  4084. { store_return_init (yyval.ttype, NULL_TREE); ;
  4085.     break;}
  4086. case 102:
  4087. #line 711 "parse.y"
  4088. {
  4089.           if (yyvsp[0].itype == 0)
  4090.             error ("no base initializers given following ':'");
  4091.           setup_vtbl_ptr ();
  4092.           /* Always keep the BLOCK node associated with the outermost
  4093.              pair of curley braces of a function.  These are needed
  4094.              for correct operation of dwarfout.c.  */
  4095.           keep_next_level ();
  4096.         ;
  4097.     break;}
  4098. case 103:
  4099. #line 724 "parse.y"
  4100. {
  4101.           if (! current_function_parms_stored)
  4102.             store_parm_decls ();
  4103.  
  4104.           if (DECL_CONSTRUCTOR_P (current_function_decl))
  4105.             {
  4106.               /* Make a contour for the initializer list.  */
  4107.               pushlevel (0);
  4108.               clear_last_expr ();
  4109.               expand_start_bindings (0);
  4110.             }
  4111.           else if (current_class_type == NULL_TREE)
  4112.             error ("base initializers not allowed for non-member functions");
  4113.           else if (! DECL_CONSTRUCTOR_P (current_function_decl))
  4114.             error ("only constructors take base initializers");
  4115.         ;
  4116.     break;}
  4117. case 104:
  4118. #line 744 "parse.y"
  4119. { yyval.itype = 0; ;
  4120.     break;}
  4121. case 105:
  4122. #line 746 "parse.y"
  4123. { yyval.itype = 1; ;
  4124.     break;}
  4125. case 108:
  4126. #line 752 "parse.y"
  4127. {
  4128.           if (current_class_name && !flag_traditional)
  4129.             pedwarn ("anachronistic old style base class initializer");
  4130.           expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
  4131.         ;
  4132.     break;}
  4133. case 109:
  4134. #line 758 "parse.y"
  4135. {
  4136.           if (current_class_name && !flag_traditional)
  4137.             pedwarn ("anachronistic old style base class initializer");
  4138.           expand_member_init (C_C_D, NULL_TREE, void_type_node);
  4139.         ;
  4140.     break;}
  4141. case 110:
  4142. #line 764 "parse.y"
  4143. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4144.     break;}
  4145. case 111:
  4146. #line 766 "parse.y"
  4147. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4148.     break;}
  4149. case 112:
  4150. #line 768 "parse.y"
  4151. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4152.     break;}
  4153. case 113:
  4154. #line 770 "parse.y"
  4155. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4156.     break;}
  4157. case 114:
  4158. #line 773 "parse.y"
  4159. {
  4160.           do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  4161.         ;
  4162.     break;}
  4163. case 115:
  4164. #line 777 "parse.y"
  4165. {
  4166.           do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
  4167.         ;
  4168.     break;}
  4169. case 126:
  4170. #line 803 "parse.y"
  4171. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
  4172.     break;}
  4173. case 127:
  4174. #line 805 "parse.y"
  4175. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ;
  4176.     break;}
  4177. case 128:
  4178. #line 807 "parse.y"
  4179. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
  4180.     break;}
  4181. case 129:
  4182. #line 809 "parse.y"
  4183. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); ;
  4184.     break;}
  4185. case 130:
  4186. #line 814 "parse.y"
  4187. { if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
  4188.     break;}
  4189. case 131:
  4190. #line 819 "parse.y"
  4191. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4192.     break;}
  4193. case 132:
  4194. #line 821 "parse.y"
  4195. { yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
  4196.     break;}
  4197. case 133:
  4198. #line 823 "parse.y"
  4199. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4200.     break;}
  4201. case 134:
  4202. #line 828 "parse.y"
  4203. { yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
  4204.     break;}
  4205. case 135:
  4206. #line 833 "parse.y"
  4207. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4208.     break;}
  4209. case 136:
  4210. #line 835 "parse.y"
  4211. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4212.     break;}
  4213. case 137:
  4214. #line 840 "parse.y"
  4215. { yyval.ttype = groktypename (yyval.ttype); ;
  4216.     break;}
  4217. case 139:
  4218. #line 846 "parse.y"
  4219. {
  4220.           tree t, decl, tmpl;
  4221.  
  4222.           tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
  4223.           t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
  4224.           set_current_level_tags_transparency (1);
  4225.           my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
  4226.                       || TREE_CODE (t) == UNION_TYPE, 257);
  4227.           yyval.ttype = t;
  4228.  
  4229.           /* Now, put a copy of the decl in global scope, to avoid
  4230.              recursive expansion.  */
  4231.           decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
  4232.           if (!decl)
  4233.             decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
  4234.           /* Now, put a copy of the decl in global scope, to avoid
  4235.              recursive expansion.  */
  4236.                   if (decl)
  4237.                     {
  4238.               /* Need to copy it to clear the chain pointer,
  4239.              and need to get it into permanent storage.  */
  4240.                       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
  4241.               push_obstacks (&permanent_obstack, &permanent_obstack);
  4242.                       decl = copy_node (decl);
  4243.               if (DECL_LANG_SPECIFIC (decl))
  4244.             copy_lang_decl (decl);
  4245.               pop_obstacks ();
  4246.               pushdecl_top_level (decl);
  4247.             }
  4248.           /* Kludge; see instantiate_class_template.  */
  4249.           TYPE_BEING_DEFINED (t) = 0;
  4250.         ;
  4251.     break;}
  4252. case 140:
  4253. #line 879 "parse.y"
  4254. {
  4255.           tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
  4256.  
  4257.           pop_obstacks ();
  4258.           end_template_instantiation (yyvsp[-5].ttype);
  4259.  
  4260.           repo_template_used (t);
  4261.  
  4262.                   /* Now go after the methods & class data.  */
  4263.                   instantiate_member_templates (yyvsp[-5].ttype);
  4264.  
  4265.           pop_tinst_level();
  4266.  
  4267.           CLASSTYPE_GOT_SEMICOLON (t) = 1;
  4268.         ;
  4269.     break;}
  4270. case 141:
  4271. #line 898 "parse.y"
  4272. { yyval.ttype = NULL_TREE; ;
  4273.     break;}
  4274. case 142:
  4275. #line 900 "parse.y"
  4276. { yyval.ttype = yyvsp[0].ttype; ;
  4277.     break;}
  4278. case 143:
  4279. #line 905 "parse.y"
  4280. { yyval.ttype = NULL_TREE; /* never used from here... */;
  4281.     break;}
  4282. case 144:
  4283. #line 907 "parse.y"
  4284. { yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
  4285.     break;}
  4286. case 145:
  4287. #line 911 "parse.y"
  4288. { yyval.code = NEGATE_EXPR; ;
  4289.     break;}
  4290. case 146:
  4291. #line 913 "parse.y"
  4292. { yyval.code = CONVERT_EXPR; ;
  4293.     break;}
  4294. case 147:
  4295. #line 915 "parse.y"
  4296. { yyval.code = PREINCREMENT_EXPR; ;
  4297.     break;}
  4298. case 148:
  4299. #line 917 "parse.y"
  4300. { yyval.code = PREDECREMENT_EXPR; ;
  4301.     break;}
  4302. case 149:
  4303. #line 919 "parse.y"
  4304. { yyval.code = TRUTH_NOT_EXPR; ;
  4305.     break;}
  4306. case 150:
  4307. #line 923 "parse.y"
  4308. { yyval.ttype = build_x_compound_expr (yyval.ttype); ;
  4309.     break;}
  4310. case 152:
  4311. #line 929 "parse.y"
  4312. { error ("ANSI C++ forbids an empty condition for `%s'",
  4313.              cond_stmt_keyword);
  4314.           yyval.ttype = integer_zero_node; ;
  4315.     break;}
  4316. case 153:
  4317. #line 933 "parse.y"
  4318. { yyval.ttype = condition_conversion (yyvsp[-1].ttype); ;
  4319.     break;}
  4320. case 154:
  4321. #line 938 "parse.y"
  4322. { error ("ANSI C++ forbids an empty condition for `%s'",
  4323.              cond_stmt_keyword);
  4324.           yyval.ttype = integer_zero_node; ;
  4325.     break;}
  4326. case 155:
  4327. #line 942 "parse.y"
  4328. { yyval.ttype = condition_conversion (yyvsp[-1].ttype); ;
  4329.     break;}
  4330. case 156:
  4331. #line 947 "parse.y"
  4332. { yyval.ttype = NULL_TREE; ;
  4333.     break;}
  4334. case 157:
  4335. #line 949 "parse.y"
  4336. { yyval.ttype = condition_conversion (yyval.ttype); ;
  4337.     break;}
  4338. case 158:
  4339. #line 951 "parse.y"
  4340. { yyval.ttype = NULL_TREE; ;
  4341.     break;}
  4342. case 159:
  4343. #line 956 "parse.y"
  4344. { {
  4345.           tree d;
  4346.           for (d = getdecls (); d; d = TREE_CHAIN (d))
  4347.             if (TREE_CODE (d) == TYPE_DECL) {
  4348.               tree s = TREE_TYPE (d);
  4349.               if (TREE_CODE (s) == RECORD_TYPE)
  4350.             cp_error ("definition of class `%T' in condition", s);
  4351.               else if (TREE_CODE (s) == ENUMERAL_TYPE)
  4352.             cp_error ("definition of enum `%T' in condition", s);
  4353.             }
  4354.           }
  4355.           current_declspecs = yyvsp[-5].ttype;
  4356.           yyvsp[0].itype = suspend_momentary ();
  4357.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  4358.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes);
  4359.         ;
  4360.     break;}
  4361. case 160:
  4362. #line 973 "parse.y"
  4363.           cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0, LOOKUP_ONLYCONVERTING);
  4364.           resume_momentary (yyvsp[-2].itype);
  4365.           yyval.ttype = yyvsp[-1].ttype; 
  4366.           if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
  4367.             cp_error ("definition of array `%#D' in condition", yyval.ttype); 
  4368.         ;
  4369.     break;}
  4370. case 166:
  4371. #line 992 "parse.y"
  4372. { finish_stmt (); ;
  4373.     break;}
  4374. case 168:
  4375. #line 999 "parse.y"
  4376. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4377.                           build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4378.     break;}
  4379. case 169:
  4380. #line 1002 "parse.y"
  4381. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4382.                           build_tree_list (NULL_TREE, error_mark_node)); ;
  4383.     break;}
  4384. case 170:
  4385. #line 1005 "parse.y"
  4386. { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4387.     break;}
  4388. case 171:
  4389. #line 1007 "parse.y"
  4390. { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
  4391.     break;}
  4392. case 172:
  4393. #line 1012 "parse.y"
  4394. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4395.     break;}
  4396. case 174:
  4397. #line 1018 "parse.y"
  4398. {
  4399. #if 0
  4400.           if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
  4401.             yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
  4402. #endif
  4403.         ;
  4404.     break;}
  4405. case 175:
  4406. #line 1026 "parse.y"
  4407. { yyvsp[0].itype = pedantic;
  4408.           pedantic = 0; ;
  4409.     break;}
  4410. case 176:
  4411. #line 1029 "parse.y"
  4412. { yyval.ttype = yyvsp[0].ttype;
  4413.           pedantic = yyvsp[-2].itype; ;
  4414.     break;}
  4415. case 177:
  4416. #line 1032 "parse.y"
  4417. { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  4418.     break;}
  4419. case 178:
  4420. #line 1034 "parse.y"
  4421. { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
  4422.     break;}
  4423. case 179:
  4424. #line 1036 "parse.y"
  4425. { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4426.     break;}
  4427. case 180:
  4428. #line 1038 "parse.y"
  4429. { yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
  4430.           if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
  4431.             TREE_NEGATED_INT (yyval.ttype) = 1;
  4432.           overflow_warning (yyval.ttype);
  4433.         ;
  4434.     break;}
  4435. case 181:
  4436. #line 1045 "parse.y"
  4437. { tree label = lookup_label (yyvsp[0].ttype);
  4438.           if (label == NULL_TREE)
  4439.             yyval.ttype = null_pointer_node;
  4440.           else
  4441.             {
  4442.               TREE_USED (label) = 1;
  4443.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  4444.               TREE_CONSTANT (yyval.ttype) = 1;
  4445.             }
  4446.         ;
  4447.     break;}
  4448. case 182:
  4449. #line 1056 "parse.y"
  4450. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  4451.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  4452.             error ("sizeof applied to a bit-field");
  4453.           /* ANSI says arrays and functions are converted inside comma.
  4454.              But we can't really convert them in build_compound_expr
  4455.              because that would break commas in lvalues.
  4456.              So do the conversion here if operand was a comma.  */
  4457.           if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
  4458.               && (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
  4459.               || TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
  4460.             yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
  4461.           else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
  4462.                 {
  4463.               tree t = TREE_VALUE (yyvsp[0].ttype);
  4464.               if (t != NULL_TREE
  4465.               && ((TREE_TYPE (t)
  4466.                   && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  4467.                   || is_overloaded_fn (t)))
  4468.             pedwarn ("ANSI C++ forbids taking the sizeof a function type");
  4469.             }
  4470.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  4471.     break;}
  4472. case 183:
  4473. #line 1078 "parse.y"
  4474. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  4475.     break;}
  4476. case 184:
  4477. #line 1080 "parse.y"
  4478. { yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
  4479.     break;}
  4480. case 185:
  4481. #line 1082 "parse.y"
  4482. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  4483.     break;}
  4484. case 186:
  4485. #line 1087 "parse.y"
  4486. { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
  4487.     break;}
  4488. case 187:
  4489. #line 1089 "parse.y"
  4490. { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
  4491.     break;}
  4492. case 188:
  4493. #line 1091 "parse.y"
  4494. { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
  4495.     break;}
  4496. case 189:
  4497. #line 1093 "parse.y"
  4498. { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
  4499.     break;}
  4500. case 190:
  4501. #line 1095 "parse.y"
  4502. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
  4503.                   NULL_TREE, yyvsp[-3].itype); ;
  4504.     break;}
  4505. case 191:
  4506. #line 1098 "parse.y"
  4507. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
  4508.     break;}
  4509. case 192:
  4510. #line 1100 "parse.y"
  4511. { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
  4512.     break;}
  4513. case 193:
  4514. #line 1102 "parse.y"
  4515. { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
  4516.     break;}
  4517. case 194:
  4518. #line 1105 "parse.y"
  4519. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
  4520.     break;}
  4521. case 195:
  4522. #line 1107 "parse.y"
  4523. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
  4524.           if (yychar == YYEMPTY)
  4525.             yychar = YYLEX; ;
  4526.     break;}
  4527. case 196:
  4528. #line 1111 "parse.y"
  4529. { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
  4530.           if (yychar == YYEMPTY)
  4531.             yychar = YYLEX; ;
  4532.     break;}
  4533. case 197:
  4534. #line 1118 "parse.y"
  4535. { yyval.ttype = yyvsp[-1].ttype; ;
  4536.     break;}
  4537. case 198:
  4538. #line 1120 "parse.y"
  4539. {
  4540.           yyval.ttype = yyvsp[-1].ttype; 
  4541.           pedwarn ("old style placement syntax, use () instead");
  4542.         ;
  4543.     break;}
  4544. case 199:
  4545. #line 1128 "parse.y"
  4546. { yyval.ttype = yyvsp[-1].ttype; ;
  4547.     break;}
  4548. case 200:
  4549. #line 1130 "parse.y"
  4550. { yyval.ttype = NULL_TREE; ;
  4551.     break;}
  4552. case 201:
  4553. #line 1132 "parse.y"
  4554. {
  4555.           cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
  4556.           yyval.ttype = error_mark_node;
  4557.         ;
  4558.     break;}
  4559. case 202:
  4560. #line 1140 "parse.y"
  4561. {
  4562.           if (pedantic)
  4563.             pedwarn ("ANSI C++ forbids initialization of new expression with `='");
  4564.           yyval.ttype = yyvsp[0].ttype;
  4565.         ;
  4566.     break;}
  4567. case 203:
  4568. #line 1150 "parse.y"
  4569. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4570.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4571.           yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype, 
  4572.                      NULL_TREE); ;
  4573.     break;}
  4574. case 204:
  4575. #line 1155 "parse.y"
  4576. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4577.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4578.           yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4579.     break;}
  4580. case 206:
  4581. #line 1163 "parse.y"
  4582. { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
  4583.     break;}
  4584. case 207:
  4585. #line 1165 "parse.y"
  4586.           tree init = build_nt (CONSTRUCTOR, NULL_TREE,
  4587.                     nreverse (yyvsp[-2].ttype)); 
  4588.           if (pedantic)
  4589.             pedwarn ("ANSI C++ forbids constructor-expressions");
  4590.           /* Indicate that this was a GNU C constructor expression.  */
  4591.           TREE_HAS_CONSTRUCTOR (init) = 1;
  4592.  
  4593.           yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
  4594.         ;
  4595.     break;}
  4596. case 209:
  4597. #line 1180 "parse.y"
  4598. { yyval.ttype = build_headof (yyvsp[-1].ttype); ;
  4599.     break;}
  4600. case 210:
  4601. #line 1182 "parse.y"
  4602. { yyval.ttype = build_classof (yyvsp[-1].ttype); ;
  4603.     break;}
  4604. case 211:
  4605. #line 1184 "parse.y"
  4606. { if (is_aggr_typedef (yyvsp[-1].ttype, 1))
  4607.             {
  4608.               tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
  4609.               if (! IS_SIGNATURE(type))
  4610.             yyval.ttype = CLASSTYPE_RTTI (type);
  4611.               else
  4612.             {
  4613.               sorry ("signature name as argument of `classof'");
  4614.               yyval.ttype = error_mark_node;
  4615.             }
  4616.             }
  4617.           else
  4618.             yyval.ttype = error_mark_node;
  4619.         ;
  4620.     break;}
  4621. case 213:
  4622. #line 1204 "parse.y"
  4623. { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
  4624.     break;}
  4625. case 214:
  4626. #line 1206 "parse.y"
  4627. { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
  4628.     break;}
  4629. case 215:
  4630. #line 1208 "parse.y"
  4631. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4632.     break;}
  4633. case 216:
  4634. #line 1210 "parse.y"
  4635. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4636.     break;}
  4637. case 217:
  4638. #line 1212 "parse.y"
  4639. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4640.     break;}
  4641. case 218:
  4642. #line 1214 "parse.y"
  4643. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4644.     break;}
  4645. case 219:
  4646. #line 1216 "parse.y"
  4647. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4648.     break;}
  4649. case 220:
  4650. #line 1218 "parse.y"
  4651. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4652.     break;}
  4653. case 221:
  4654. #line 1220 "parse.y"
  4655. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4656.     break;}
  4657. case 222:
  4658. #line 1222 "parse.y"
  4659. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4660.     break;}
  4661. case 223:
  4662. #line 1224 "parse.y"
  4663. { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4664.     break;}
  4665. case 224:
  4666. #line 1226 "parse.y"
  4667. { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4668.     break;}
  4669. case 225:
  4670. #line 1228 "parse.y"
  4671. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4672.     break;}
  4673. case 226:
  4674. #line 1230 "parse.y"
  4675. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4676.     break;}
  4677. case 227:
  4678. #line 1232 "parse.y"
  4679. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4680.     break;}
  4681. case 228:
  4682. #line 1234 "parse.y"
  4683. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4684.     break;}
  4685. case 229:
  4686. #line 1236 "parse.y"
  4687. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4688.     break;}
  4689. case 230:
  4690. #line 1238 "parse.y"
  4691. { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4692.     break;}
  4693. case 231:
  4694. #line 1240 "parse.y"
  4695. { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4696.     break;}
  4697. case 232:
  4698. #line 1242 "parse.y"
  4699. { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  4700.     break;}
  4701. case 233:
  4702. #line 1244 "parse.y"
  4703. { yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype);
  4704.                   C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  4705.     break;}
  4706. case 234:
  4707. #line 1247 "parse.y"
  4708. { register tree rval;
  4709.           if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
  4710.                          make_node (yyvsp[-1].code))))
  4711.             yyval.ttype = rval;
  4712.           else
  4713.             yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
  4714.     break;}
  4715. case 235:
  4716. #line 1254 "parse.y"
  4717. { yyval.ttype = build_throw (NULL_TREE); ;
  4718.     break;}
  4719. case 236:
  4720. #line 1256 "parse.y"
  4721. { yyval.ttype = build_throw (yyvsp[0].ttype); ;
  4722.     break;}
  4723. case 237:
  4724. #line 1274 "parse.y"
  4725. { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4726.     break;}
  4727. case 245:
  4728. #line 1289 "parse.y"
  4729. { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
  4730.     break;}
  4731. case 246:
  4732. #line 1291 "parse.y"
  4733. { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
  4734.     break;}
  4735. case 247:
  4736. #line 1293 "parse.y"
  4737. { yyval.ttype = yyvsp[-1].ttype; ;
  4738.     break;}
  4739. case 250:
  4740. #line 1300 "parse.y"
  4741. { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
  4742.     break;}
  4743. case 251:
  4744. #line 1305 "parse.y"
  4745. {
  4746.           if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
  4747.             yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
  4748.           else if (IDENTIFIER_OPNAME_P (yyval.ttype))
  4749.             {
  4750.               tree op = yyval.ttype;
  4751.               yyval.ttype = lookup_name (op, 0);
  4752.               if (yyval.ttype == NULL_TREE)
  4753.             {
  4754.               if (op != ansi_opname[ERROR_MARK])
  4755.                 error ("operator %s not defined",
  4756.                    operator_name_string (op));
  4757.               yyval.ttype = error_mark_node;
  4758.             }
  4759.             }
  4760.           else
  4761.             yyval.ttype = do_identifier (yyval.ttype);
  4762.         ;
  4763.     break;}
  4764. case 254:
  4765. #line 1326 "parse.y"
  4766. { yyval.ttype = combine_strings (yyval.ttype); ;
  4767.     break;}
  4768. case 255:
  4769. #line 1328 "parse.y"
  4770. { char class;
  4771.           yyval.ttype = yyvsp[-1].ttype;
  4772.           class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
  4773.           if (class == 'e' || class == '1'
  4774.               || class == '2' || class == '<')
  4775.                     /* This inhibits warnings in truthvalue_conversion. */
  4776.             C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  4777.     break;}
  4778. case 256:
  4779. #line 1336 "parse.y"
  4780. { char class;
  4781.           yyval.ttype = reparse_decl_as_expr (NULL_TREE, yyvsp[-1].ttype);
  4782.           class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
  4783.           if (class == 'e' || class == '1'
  4784.               || class == '2' || class == '<')
  4785.                     /* This inhibits warnings in truthvalue_conversion. */
  4786.             C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  4787.     break;}
  4788. case 257:
  4789. #line 1344 "parse.y"
  4790. { yyval.ttype = error_mark_node; ;
  4791.     break;}
  4792. case 258:
  4793. #line 1346 "parse.y"
  4794. { if (current_function_decl == 0)
  4795.             {
  4796.               error ("braced-group within expression allowed only inside a function");
  4797.               YYERROR;
  4798.             }
  4799.           keep_next_level ();
  4800.           yyval.ttype = expand_start_stmt_expr (); ;
  4801.     break;}
  4802. case 259:
  4803. #line 1354 "parse.y"
  4804. { tree rtl_exp;
  4805.           if (pedantic)
  4806.             pedwarn ("ANSI C++ forbids braced-groups within expressions");
  4807.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  4808.           /* The statements have side effects, so the group does.  */
  4809.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  4810.  
  4811.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  4812.             {
  4813.               /* Make a BIND_EXPR for the BLOCK already made.  */
  4814.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  4815.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  4816.               /* Remove the block from the tree at this point.
  4817.              It gets put back at the proper place
  4818.              when the BIND_EXPR is expanded.  */
  4819.               delete_block (yyvsp[-1].ttype);
  4820.             }
  4821.           else
  4822.             yyval.ttype = yyvsp[-1].ttype;
  4823.         ;
  4824.     break;}
  4825. case 260:
  4826. #line 1375 "parse.y"
  4827. { /* [eichin:19911016.1902EST] */
  4828.                   yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl); 
  4829.                   /* here we instantiate_class_template as needed... */
  4830.                   do_pending_templates ();
  4831.                 ;
  4832.     break;}
  4833. case 261:
  4834. #line 1379 "parse.y"
  4835. {
  4836.                   if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
  4837.                       && TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
  4838.                 yyval.ttype = require_complete_type (yyvsp[-1].ttype);
  4839.                   else
  4840.                     yyval.ttype = yyvsp[-1].ttype;
  4841.                 ;
  4842.     break;}
  4843. case 262:
  4844. #line 1387 "parse.y"
  4845. {
  4846.           yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
  4847.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  4848.               && TREE_TYPE (yyval.ttype) != void_type_node)
  4849.             yyval.ttype = require_complete_type (yyval.ttype);
  4850.                 ;
  4851.     break;}
  4852. case 263:
  4853. #line 1394 "parse.y"
  4854. { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
  4855.     break;}
  4856. case 264:
  4857. #line 1396 "parse.y"
  4858. { /* If we get an OFFSET_REF, turn it into what it really
  4859.              means (e.g., a COMPONENT_REF).  This way if we've got,
  4860.              say, a reference to a static member that's being operated
  4861.              on, we don't end up trying to find a member operator for
  4862.              the class it's in.  */
  4863.           if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4864.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4865.           yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
  4866.     break;}
  4867. case 265:
  4868. #line 1405 "parse.y"
  4869. { if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4870.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4871.           yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
  4872.     break;}
  4873. case 266:
  4874. #line 1410 "parse.y"
  4875. { if (current_class_decl)
  4876.             {
  4877. #ifdef WARNING_ABOUT_CCD
  4878.               TREE_USED (current_class_decl) = 1;
  4879. #endif
  4880.               yyval.ttype = current_class_decl;
  4881.             }
  4882.           else if (current_function_decl
  4883.                && DECL_STATIC_FUNCTION_P (current_function_decl))
  4884.             {
  4885.               error ("`this' is unavailable for static member functions");
  4886.               yyval.ttype = error_mark_node;
  4887.             }
  4888.           else
  4889.             {
  4890.               if (current_function_decl)
  4891.             error ("invalid use of `this' in non-member function");
  4892.               else
  4893.             error ("invalid use of `this' at top level");
  4894.               yyval.ttype = error_mark_node;
  4895.             }
  4896.         ;
  4897.     break;}
  4898. case 267:
  4899. #line 1433 "parse.y"
  4900. {
  4901.           tree type;
  4902.           tree id = yyval.ttype;
  4903.  
  4904.           /* This is a C cast in C++'s `functional' notation.  */
  4905.           if (yyvsp[-1].ttype == error_mark_node)
  4906.             {
  4907.               yyval.ttype = error_mark_node;
  4908.               break;
  4909.             }
  4910. #if 0
  4911.           if (yyvsp[-1].ttype == NULL_TREE)
  4912.             {
  4913.               error ("cannot cast null list to type `%s'",
  4914.                      IDENTIFIER_POINTER (TYPE_NAME (id)));
  4915.               yyval.ttype = error_mark_node;
  4916.               break;
  4917.             }
  4918. #endif
  4919. #if 0
  4920.           /* type is not set! (mrs) */
  4921.           if (type == error_mark_node)
  4922.             yyval.ttype = error_mark_node;
  4923.           else
  4924. #endif
  4925.             {
  4926.               if (id == ridpointers[(int) RID_CONST])
  4927.                 type = build_type_variant (integer_type_node, 1, 0);
  4928.               else if (id == ridpointers[(int) RID_VOLATILE])
  4929.                 type = build_type_variant (integer_type_node, 0, 1);
  4930. #if 0
  4931.               /* should not be able to get here (mrs) */
  4932.               else if (id == ridpointers[(int) RID_FRIEND])
  4933.                 {
  4934.                   error ("cannot cast expression to `friend' type");
  4935.                   yyval.ttype = error_mark_node;
  4936.                   break;
  4937.                 }
  4938. #endif
  4939.               else my_friendly_abort (79);
  4940.               yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype), 1);
  4941.             }
  4942.         ;
  4943.     break;}
  4944. case 269:
  4945. #line 1478 "parse.y"
  4946. { tree type = groktypename (yyvsp[-4].ttype);
  4947.           yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
  4948.     break;}
  4949. case 270:
  4950. #line 1481 "parse.y"
  4951. { tree type = groktypename (yyvsp[-4].ttype);
  4952.           yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
  4953.     break;}
  4954. case 271:
  4955. #line 1484 "parse.y"
  4956. { tree type = groktypename (yyvsp[-4].ttype);
  4957.           yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
  4958.     break;}
  4959. case 272:
  4960. #line 1487 "parse.y"
  4961. { tree type = groktypename (yyvsp[-4].ttype);
  4962.           yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
  4963.     break;}
  4964. case 273:
  4965. #line 1490 "parse.y"
  4966. { yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
  4967.     break;}
  4968. case 274:
  4969. #line 1492 "parse.y"
  4970. { tree type = groktypename (yyvsp[-1].ttype);
  4971.           yyval.ttype = get_typeid (TYPE_MAIN_VARIANT (type)); ;
  4972.     break;}
  4973. case 275:
  4974. #line 1495 "parse.y"
  4975. {
  4976.         do_scoped_id:
  4977.           yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
  4978.           if (yychar == YYEMPTY)
  4979.             yychar = YYLEX;
  4980.           if (! yyval.ttype)
  4981.             {
  4982.               if (yychar == '(' || yychar == LEFT_RIGHT)
  4983.             yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  4984.               else
  4985.             {
  4986.               if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
  4987.                 error ("undeclared variable `%s' (first use here)",
  4988.                    IDENTIFIER_POINTER (yyvsp[0].ttype));
  4989.               yyval.ttype = error_mark_node;
  4990.               /* Prevent repeated error messages.  */
  4991.               IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  4992.             }
  4993.             }
  4994.           else
  4995.             {
  4996.               if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
  4997.             assemble_external (TREE_OPERAND (yyval.ttype, 0));
  4998.               else
  4999.             assemble_external (yyval.ttype);
  5000.               TREE_USED (yyval.ttype) = 1;
  5001.             }
  5002.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  5003.             {
  5004.               /* XXX CHS - should we set TREE_USED of the constant? */
  5005.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  5006.               /* This is to prevent an enum whose value is 0
  5007.              from being considered a null pointer constant.  */
  5008.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  5009.               TREE_CONSTANT (yyval.ttype) = 1;
  5010.             }
  5011.  
  5012.         ;
  5013.     break;}
  5014. case 276:
  5015. #line 1534 "parse.y"
  5016. {
  5017.           got_scope = NULL_TREE;
  5018.           if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
  5019.             goto do_scoped_id;
  5020.           yyval.ttype = yyvsp[0].ttype;
  5021.         ;
  5022.     break;}
  5023. case 277:
  5024. #line 1541 "parse.y"
  5025. { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
  5026.     break;}
  5027. case 278:
  5028. #line 1543 "parse.y"
  5029. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
  5030.     break;}
  5031. case 279:
  5032. #line 1545 "parse.y"
  5033. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
  5034.     break;}
  5035. case 280:
  5036. #line 1547 "parse.y"
  5037. { got_object = NULL_TREE;
  5038.           yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
  5039.     break;}
  5040. case 281:
  5041. #line 1550 "parse.y"
  5042. { got_object = NULL_TREE;
  5043.           yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
  5044.     break;}
  5045. case 282:
  5046. #line 1553 "parse.y"
  5047. {
  5048.           got_object = NULL_TREE;
  5049. #if 0
  5050.           /* This is a future direction of this code, but because
  5051.              build_x_function_call cannot always undo what is done
  5052.              in build_component_ref entirely yet, we cannot do this. */
  5053.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
  5054.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5055.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5056.             yyval.ttype = require_complete_type (yyval.ttype);
  5057. #else
  5058.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
  5059.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5060. #endif
  5061.         ;
  5062.     break;}
  5063. case 283:
  5064. #line 1569 "parse.y"
  5065. {
  5066.           got_object = NULL_TREE;
  5067. #if 0
  5068.           /* This is a future direction of this code, but because
  5069.              build_x_function_call cannot always undo what is done
  5070.              in build_component_ref entirely yet, we cannot do this. */
  5071.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
  5072.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5073.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5074.             yyval.ttype = require_complete_type (yyval.ttype);
  5075. #else
  5076.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
  5077.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5078. #endif
  5079.         ;
  5080.     break;}
  5081. case 284:
  5082. #line 1585 "parse.y"
  5083. {
  5084.           got_object = NULL_TREE;
  5085.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
  5086.             {
  5087.               warning ("signature name in scope resolution ignored");
  5088.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
  5089.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5090.             }
  5091.           else
  5092.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  5093.         ;
  5094.     break;}
  5095. case 285:
  5096. #line 1597 "parse.y"
  5097. {
  5098.           got_object = NULL_TREE;
  5099.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
  5100.             {
  5101.               warning ("signature name in scope resolution ignored");
  5102.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
  5103.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5104.             }
  5105.           else
  5106.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
  5107.         ;
  5108.     break;}
  5109. case 286:
  5110. #line 1610 "parse.y"
  5111. {
  5112.           got_object = NULL_TREE;
  5113.           if (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype)
  5114.               && (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype)) 
  5115.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype)))))
  5116.             cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
  5117.           yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
  5118.         ;
  5119.     break;}
  5120. case 287:
  5121. #line 1619 "parse.y"
  5122. {
  5123.           got_object = NULL_TREE;
  5124.           if (yyvsp[-4].ttype != yyvsp[-1].ttype)
  5125.             cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
  5126.           if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
  5127.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
  5128.             cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
  5129.           yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
  5130.         ;
  5131.     break;}
  5132. case 288:
  5133. #line 1629 "parse.y"
  5134. {
  5135.           got_object = NULL_TREE;
  5136.           yyval.ttype = error_mark_node;
  5137.         ;
  5138.     break;}
  5139. case 289:
  5140. #line 1674 "parse.y"
  5141. { yyval.itype = 0; ;
  5142.     break;}
  5143. case 290:
  5144. #line 1676 "parse.y"
  5145. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5146.     break;}
  5147. case 291:
  5148. #line 1680 "parse.y"
  5149. { yyval.itype = 0; ;
  5150.     break;}
  5151. case 292:
  5152. #line 1682 "parse.y"
  5153. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5154.     break;}
  5155. case 293:
  5156. #line 1687 "parse.y"
  5157. { yyval.ttype = boolean_true_node; ;
  5158.     break;}
  5159. case 294:
  5160. #line 1689 "parse.y"
  5161. { yyval.ttype = boolean_false_node; ;
  5162.     break;}
  5163. case 296:
  5164. #line 1696 "parse.y"
  5165. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5166.     break;}
  5167. case 297:
  5168. #line 1701 "parse.y"
  5169. {
  5170.           if (! current_function_parms_stored)
  5171.             store_parm_decls ();
  5172.           setup_vtbl_ptr ();
  5173.           /* Always keep the BLOCK node associated with the outermost
  5174.              pair of curley braces of a function.  These are needed
  5175.              for correct operation of dwarfout.c.  */
  5176.           keep_next_level ();
  5177.         ;
  5178.     break;}
  5179. case 298:
  5180. #line 1713 "parse.y"
  5181. { got_object = TREE_TYPE (yyval.ttype); ;
  5182.     break;}
  5183. case 299:
  5184. #line 1715 "parse.y"
  5185. {
  5186.           yyval.ttype = build_x_arrow (yyval.ttype); 
  5187.           got_object = TREE_TYPE (yyval.ttype);
  5188.         ;
  5189.     break;}
  5190. case 300:
  5191. #line 1722 "parse.y"
  5192. { prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
  5193.     break;}
  5194. case 301:
  5195. #line 1728 "parse.y"
  5196. { tree d = get_decl_list (yyvsp[-2].ttype);
  5197.           int yes = suspend_momentary ();
  5198.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5199.           cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
  5200.           resume_momentary (yes);
  5201.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5202.             note_got_semicolon (yyvsp[-2].ttype);
  5203.         ;
  5204.     break;}
  5205. case 302:
  5206. #line 1737 "parse.y"
  5207. { tree d = yyvsp[-2].ttype;
  5208.           int yes = suspend_momentary ();
  5209.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5210.           cp_finish_decl (d, NULL_TREE, NULL_TREE, 0, 0);
  5211.           resume_momentary (yes);
  5212.           note_list_got_semicolon (yyvsp[-2].ttype);
  5213.         ;
  5214.     break;}
  5215. case 303:
  5216. #line 1745 "parse.y"
  5217. {
  5218.           resume_momentary (yyvsp[-1].itype);
  5219.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5220.             note_got_semicolon (yyvsp[-2].ttype);
  5221.         ;
  5222.     break;}
  5223. case 304:
  5224. #line 1751 "parse.y"
  5225. {
  5226.           resume_momentary (yyvsp[-1].itype);
  5227.           note_list_got_semicolon (yyvsp[-2].ttype);
  5228.         ;
  5229.     break;}
  5230. case 305:
  5231. #line 1756 "parse.y"
  5232. { resume_momentary (yyvsp[-1].itype); ;
  5233.     break;}
  5234. case 306:
  5235. #line 1758 "parse.y"
  5236. {
  5237.           shadow_tag (yyvsp[-1].ttype);
  5238.           note_list_got_semicolon (yyvsp[-1].ttype);
  5239.         ;
  5240.     break;}
  5241. case 307:
  5242. #line 1763 "parse.y"
  5243. { warning ("empty declaration"); ;
  5244.     break;}
  5245. case 310:
  5246. #line 1777 "parse.y"
  5247. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
  5248.                      NULL_TREE); ;
  5249.     break;}
  5250. case 311:
  5251. #line 1780 "parse.y"
  5252. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), 
  5253.                      NULL_TREE); ;
  5254.     break;}
  5255. case 312:
  5256. #line 1787 "parse.y"
  5257. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5258.     break;}
  5259. case 313:
  5260. #line 1789 "parse.y"
  5261. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5262.     break;}
  5263. case 314:
  5264. #line 1791 "parse.y"
  5265. { yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  5266.     break;}
  5267. case 315:
  5268. #line 1793 "parse.y"
  5269. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5270.     break;}
  5271. case 316:
  5272. #line 1795 "parse.y"
  5273. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5274.     break;}
  5275. case 319:
  5276. #line 1809 "parse.y"
  5277. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5278.     break;}
  5279. case 320:
  5280. #line 1811 "parse.y"
  5281. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5282.     break;}
  5283. case 321:
  5284. #line 1813 "parse.y"
  5285. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, chainon (yyvsp[-1].ttype, yyvsp[0].ttype)); ;
  5286.     break;}
  5287. case 322:
  5288. #line 1815 "parse.y"
  5289. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5290.     break;}
  5291. case 323:
  5292. #line 1817 "parse.y"
  5293. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5294.     break;}
  5295. case 324:
  5296. #line 1819 "parse.y"
  5297. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype, 
  5298.                        chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
  5299.     break;}
  5300. case 325:
  5301. #line 1825 "parse.y"
  5302. { if (extra_warnings)
  5303.             warning ("`%s' is not at beginning of declaration",
  5304.                  IDENTIFIER_POINTER (yyval.ttype));
  5305.           yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5306.     break;}
  5307. case 326:
  5308. #line 1830 "parse.y"
  5309. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5310.     break;}
  5311. case 327:
  5312. #line 1832 "parse.y"
  5313. { if (extra_warnings)
  5314.             warning ("`%s' is not at beginning of declaration",
  5315.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5316.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5317.     break;}
  5318. case 328:
  5319. #line 1837 "parse.y"
  5320. { yyval.ttype = yyvsp[-2].ttype; ;
  5321.     break;}
  5322. case 329:
  5323. #line 1839 "parse.y"
  5324. { yyval.ttype = NULL_TREE; ;
  5325.     break;}
  5326. case 330:
  5327. #line 1848 "parse.y"
  5328. { TREE_STATIC (yyval.ttype) = 1; ;
  5329.     break;}
  5330. case 331:
  5331. #line 1850 "parse.y"
  5332. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  5333.     break;}
  5334. case 332:
  5335. #line 1852 "parse.y"
  5336. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5337.           TREE_STATIC (yyval.ttype) = 1; ;
  5338.     break;}
  5339. case 333:
  5340. #line 1855 "parse.y"
  5341. { if (extra_warnings && TREE_STATIC (yyval.ttype))
  5342.             warning ("`%s' is not at beginning of declaration",
  5343.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5344.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5345.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  5346.     break;}
  5347. case 334:
  5348. #line 1861 "parse.y"
  5349. { yyval.ttype = yyvsp[-2].ttype; ;
  5350.     break;}
  5351. case 335:
  5352. #line 1863 "parse.y"
  5353. { yyval.ttype = NULL_TREE; ;
  5354.     break;}
  5355. case 336:
  5356. #line 1875 "parse.y"
  5357. { yyval.ttype = get_decl_list (yyval.ttype); ;
  5358.     break;}
  5359. case 337:
  5360. #line 1877 "parse.y"
  5361. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5362.     break;}
  5363. case 338:
  5364. #line 1879 "parse.y"
  5365. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5366.     break;}
  5367. case 339:
  5368. #line 1881 "parse.y"
  5369. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5370.     break;}
  5371. case 340:
  5372. #line 1886 "parse.y"
  5373. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5374.     break;}
  5375. case 341:
  5376. #line 1888 "parse.y"
  5377. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5378.     break;}
  5379. case 345:
  5380. #line 1899 "parse.y"
  5381. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
  5382.           if (pedantic)
  5383.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5384.     break;}
  5385. case 346:
  5386. #line 1903 "parse.y"
  5387. { yyval.ttype = groktypename (yyvsp[-1].ttype);
  5388.           if (pedantic)
  5389.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5390.     break;}
  5391. case 347:
  5392. #line 1907 "parse.y"
  5393. { tree type = TREE_TYPE (yyvsp[-1].ttype);
  5394.  
  5395.           if (IS_AGGR_TYPE (type))
  5396.             {
  5397.               sorry ("sigof type specifier");
  5398.               yyval.ttype = type;
  5399.             }
  5400.           else
  5401.             {
  5402.               error ("`sigof' applied to non-aggregate expression");
  5403.               yyval.ttype = error_mark_node;
  5404.             }
  5405.         ;
  5406.     break;}
  5407. case 348:
  5408. #line 1921 "parse.y"
  5409. { tree type = groktypename (yyvsp[-1].ttype);
  5410.  
  5411.           if (IS_AGGR_TYPE (type))
  5412.             {
  5413.               sorry ("sigof type specifier");
  5414.               yyval.ttype = type;
  5415.             }
  5416.           else
  5417.             {
  5418.               error("`sigof' applied to non-aggregate type");
  5419.               yyval.ttype = error_mark_node;
  5420.             }
  5421.         ;
  5422.     break;}
  5423. case 358:
  5424. #line 1960 "parse.y"
  5425. { yyval.ttype = NULL_TREE; ;
  5426.     break;}
  5427. case 359:
  5428. #line 1962 "parse.y"
  5429. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
  5430.     break;}
  5431. case 360:
  5432. #line 1967 "parse.y"
  5433. { current_declspecs = yyvsp[-5].ttype;
  5434.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5435.             current_declspecs = get_decl_list (current_declspecs);
  5436.           if (have_extern_spec && !used_extern_spec)
  5437.             {
  5438.               current_declspecs = decl_tree_cons
  5439.             (NULL_TREE, get_identifier ("extern"), 
  5440.              current_declspecs);
  5441.               used_extern_spec = 1;
  5442.             }
  5443.           yyvsp[0].itype = suspend_momentary ();
  5444.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5445.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  5446.     break;}
  5447. case 361:
  5448. #line 1982 "parse.y"
  5449. { cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
  5450.           yyval.itype = yyvsp[-2].itype; ;
  5451.     break;}
  5452. case 362:
  5453. #line 1985 "parse.y"
  5454. { tree d;
  5455.           current_declspecs = yyvsp[-4].ttype;
  5456.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5457.             current_declspecs = get_decl_list (current_declspecs);
  5458.           if (have_extern_spec && !used_extern_spec)
  5459.             {
  5460.               current_declspecs = decl_tree_cons
  5461.             (NULL_TREE, get_identifier ("extern"), 
  5462.              current_declspecs);
  5463.               used_extern_spec = 1;
  5464.             }
  5465.           yyval.itype = suspend_momentary ();
  5466.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5467.           cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
  5468.           cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
  5469.     break;}
  5470. case 363:
  5471. #line 2004 "parse.y"
  5472. { yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5473.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  5474.     break;}
  5475. case 364:
  5476. #line 2008 "parse.y"
  5477. { cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING); ;
  5478.     break;}
  5479. case 365:
  5480. #line 2010 "parse.y"
  5481. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5482.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes);
  5483.           cp_finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
  5484.     break;}
  5485. case 366:
  5486. #line 2017 "parse.y"
  5487. { current_declspecs = yyvsp[-5].ttype;
  5488.           yyvsp[0].itype = suspend_momentary ();
  5489.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5490.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  5491.     break;}
  5492. case 367:
  5493. #line 2023 "parse.y"
  5494. { cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
  5495.           yyval.itype = yyvsp[-2].itype; ;
  5496.     break;}
  5497. case 368:
  5498. #line 2026 "parse.y"
  5499. { tree d;
  5500.           current_declspecs = yyvsp[-4].ttype;
  5501.           yyval.itype = suspend_momentary ();
  5502.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5503.           cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
  5504.           cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
  5505.     break;}
  5506. case 369:
  5507. #line 2036 "parse.y"
  5508. { current_declspecs = NULL_TREE;
  5509.           yyvsp[0].itype = suspend_momentary ();
  5510.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5511.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  5512.     break;}
  5513. case 370:
  5514. #line 2042 "parse.y"
  5515. { cp_finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0, LOOKUP_ONLYCONVERTING);
  5516.           yyval.itype = yyvsp[-2].itype; ;
  5517.     break;}
  5518. case 371:
  5519. #line 2045 "parse.y"
  5520. { tree d;
  5521.           current_declspecs = NULL_TREE;
  5522.           yyval.itype = suspend_momentary ();
  5523.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5524.           cplus_decl_attributes (d, yyvsp[0].ttype, prefix_attributes);
  5525.           cp_finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0, 0); ;
  5526.     break;}
  5527. case 372:
  5528. #line 2057 "parse.y"
  5529. { yyval.ttype = NULL_TREE; ;
  5530.     break;}
  5531. case 373:
  5532. #line 2059 "parse.y"
  5533. { yyval.ttype = yyvsp[0].ttype; ;
  5534.     break;}
  5535. case 374:
  5536. #line 2064 "parse.y"
  5537. { yyval.ttype = yyvsp[0].ttype; ;
  5538.     break;}
  5539. case 375:
  5540. #line 2066 "parse.y"
  5541. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  5542.     break;}
  5543. case 376:
  5544. #line 2071 "parse.y"
  5545. { yyval.ttype = yyvsp[-2].ttype; ;
  5546.     break;}
  5547. case 377:
  5548. #line 2076 "parse.y"
  5549. { yyval.ttype = yyvsp[0].ttype; ;
  5550.     break;}
  5551. case 378:
  5552. #line 2078 "parse.y"
  5553. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5554.     break;}
  5555. case 379:
  5556. #line 2083 "parse.y"
  5557. { yyval.ttype = NULL_TREE; ;
  5558.     break;}
  5559. case 380:
  5560. #line 2085 "parse.y"
  5561. { yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
  5562.     break;}
  5563. case 381:
  5564. #line 2087 "parse.y"
  5565. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  5566.     break;}
  5567. case 382:
  5568. #line 2089 "parse.y"
  5569. { yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  5570.     break;}
  5571. case 383:
  5572. #line 2091 "parse.y"
  5573. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  5574.     break;}
  5575. case 388:
  5576. #line 2107 "parse.y"
  5577. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5578.     break;}
  5579. case 389:
  5580. #line 2109 "parse.y"
  5581. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5582.     break;}
  5583. case 390:
  5584. #line 2114 "parse.y"
  5585. { yyval.ttype = NULL_TREE; ;
  5586.     break;}
  5587. case 391:
  5588. #line 2116 "parse.y"
  5589. { yyval.ttype = yyvsp[0].ttype; ;
  5590.     break;}
  5591. case 393:
  5592. #line 2121 "parse.y"
  5593. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  5594.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5595.     break;}
  5596. case 394:
  5597. #line 2124 "parse.y"
  5598. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
  5599.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5600.     break;}
  5601. case 395:
  5602. #line 2127 "parse.y"
  5603. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
  5604.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5605.     break;}
  5606. case 396:
  5607. #line 2130 "parse.y"
  5608. { yyval.ttype = NULL_TREE; ;
  5609.     break;}
  5610. case 397:
  5611. #line 2137 "parse.y"
  5612. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  5613.     break;}
  5614. case 398:
  5615. #line 2139 "parse.y"
  5616. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5617.     break;}
  5618. case 399:
  5619. #line 2142 "parse.y"
  5620. { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5621.     break;}
  5622. case 400:
  5623. #line 2144 "parse.y"
  5624. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5625.     break;}
  5626. case 401:
  5627. #line 2146 "parse.y"
  5628. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  5629.     break;}
  5630. case 402:
  5631. #line 2148 "parse.y"
  5632. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5633.     break;}
  5634. case 403:
  5635. #line 2153 "parse.y"
  5636. { yyvsp[0].itype = suspend_momentary ();
  5637.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  5638.     break;}
  5639. case 404:
  5640. #line 2156 "parse.y"
  5641. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5642.           resume_momentary ((int) yyvsp[-4].itype);
  5643.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5644.     break;}
  5645. case 405:
  5646. #line 2160 "parse.y"
  5647. { yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
  5648.           check_for_missing_semicolon (yyval.ttype); ;
  5649.     break;}
  5650. case 406:
  5651. #line 2163 "parse.y"
  5652. { yyvsp[0].itype = suspend_momentary ();
  5653.           yyval.ttype = start_enum (make_anon_name ()); ;
  5654.     break;}
  5655. case 407:
  5656. #line 2166 "parse.y"
  5657. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5658.           resume_momentary ((int) yyvsp[-5].itype);
  5659.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5660.     break;}
  5661. case 408:
  5662. #line 2170 "parse.y"
  5663. { yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
  5664.           check_for_missing_semicolon (yyval.ttype); ;
  5665.     break;}
  5666. case 409:
  5667. #line 2173 "parse.y"
  5668. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1); ;
  5669.     break;}
  5670. case 410:
  5671. #line 2175 "parse.y"
  5672. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 1); ;
  5673.     break;}
  5674. case 411:
  5675. #line 2177 "parse.y"
  5676. { yyval.ttype = yyvsp[0].ttype; ;
  5677.     break;}
  5678. case 412:
  5679. #line 2180 "parse.y"
  5680. {
  5681.           int semi;
  5682.           tree id;
  5683.  
  5684. #if 0
  5685.           /* Need to rework class nesting in the
  5686.              presence of nested classes, etc.  */
  5687.           shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
  5688. #endif
  5689.           if (yychar == YYEMPTY)
  5690.             yychar = YYLEX;
  5691.           semi = yychar == ';';
  5692.           /* finish_struct nukes this anyway; if
  5693.              finish_exception does too, then it can go. */
  5694.           if (semi)
  5695.             note_got_semicolon (yyval.ttype);
  5696.  
  5697.           if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
  5698.             /* $$ = $1 from default rule.  */;
  5699.           else
  5700.             {
  5701.               yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
  5702.               if (semi) note_got_semicolon (yyval.ttype);
  5703.             }
  5704.  
  5705.           pop_obstacks ();
  5706.  
  5707.           id = TYPE_IDENTIFIER (yyval.ttype);
  5708.           if (id && IDENTIFIER_TEMPLATE (id))
  5709.             {
  5710.               tree decl;
  5711.  
  5712.               /* I don't know if the copying of this TYPE_DECL is
  5713.                * really needed.  However, it's such a small per-
  5714.                * formance penalty that the extra safety is a bargain.
  5715.                * - niklas@appli.se
  5716.                */
  5717.               push_obstacks (&permanent_obstack, &permanent_obstack);
  5718.               decl = copy_node (lookup_name (id, 0));
  5719.               if (DECL_LANG_SPECIFIC (decl))
  5720.             copy_lang_decl (decl);
  5721.               pop_obstacks ();
  5722.               undo_template_name_overload (id, 0);
  5723.               pushdecl_top_level (decl);
  5724.             }
  5725.           if (! semi)
  5726.             check_for_missing_semicolon (yyval.ttype); ;
  5727.     break;}
  5728. case 413:
  5729. #line 2228 "parse.y"
  5730. {
  5731.           /* struct B: public A; is not accepted by the WP grammar.  */
  5732.           if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype)
  5733.               && ! TYPE_BEING_DEFINED (yyval.ttype))
  5734.             cp_error ("base clause without member specification for `%#T'",
  5735.                   yyval.ttype);
  5736.         ;
  5737.     break;}
  5738. case 417:
  5739. #line 2245 "parse.y"
  5740. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  5741.     break;}
  5742. case 419:
  5743. #line 2250 "parse.y"
  5744. { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5745.     break;}
  5746. case 420:
  5747. #line 2252 "parse.y"
  5748. { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5749.     break;}
  5750. case 421:
  5751. #line 2254 "parse.y"
  5752. { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5753.     break;}
  5754. case 422:
  5755. #line 2256 "parse.y"
  5756. { error ("no body nor ';' separates two class, struct or union declarations"); ;
  5757.     break;}
  5758. case 423:
  5759. #line 2261 "parse.y"
  5760.           yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype; 
  5761.           if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
  5762.             instantiate_class_template (yyval.ttype, 2);
  5763.         ;
  5764.     break;}
  5765. case 424:
  5766. #line 2270 "parse.y"
  5767. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5768.     break;}
  5769. case 425:
  5770. #line 2272 "parse.y"
  5771. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5772.     break;}
  5773. case 426:
  5774. #line 2274 "parse.y"
  5775. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5776.     break;}
  5777. case 428:
  5778. #line 2280 "parse.y"
  5779. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5780.     break;}
  5781. case 429:
  5782. #line 2282 "parse.y"
  5783. { yyungetc ('{', 1);
  5784.         aggr2:
  5785.           current_aggr = yyval.ttype;
  5786.           yyval.ttype = yyvsp[-1].ttype;
  5787.           overload_template_name (yyval.ttype, 0); ;
  5788.     break;}
  5789. case 430:
  5790. #line 2288 "parse.y"
  5791. { yyungetc (':', 1); goto aggr2; ;
  5792.     break;}
  5793. case 431:
  5794. #line 2292 "parse.y"
  5795. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 0); ;
  5796.     break;}
  5797. case 432:
  5798. #line 2297 "parse.y"
  5799. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
  5800.     break;}
  5801. case 433:
  5802. #line 2300 "parse.y"
  5803.           yyval.ttype = yyvsp[-1].ttype;
  5804.           if (yyvsp[0].ttype)
  5805.                     xref_basetypes (current_aggr, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); 
  5806.         ;
  5807.     break;}
  5808. case 434:
  5809. #line 2308 "parse.y"
  5810. { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
  5811.           yyungetc ('{', 1); ;
  5812.     break;}
  5813. case 437:
  5814. #line 2316 "parse.y"
  5815. { yyval.ttype = NULL_TREE; ;
  5816.     break;}
  5817. case 438:
  5818. #line 2318 "parse.y"
  5819. { yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
  5820.     break;}
  5821. case 439:
  5822. #line 2320 "parse.y"
  5823. { yyval.ttype = yyvsp[0].ttype; ;
  5824.     break;}
  5825. case 441:
  5826. #line 2326 "parse.y"
  5827. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5828.     break;}
  5829. case 442:
  5830. #line 2331 "parse.y"
  5831. {
  5832.           tree type;
  5833.          do_base_class1:
  5834.           type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
  5835.           if (! is_aggr_typedef (yyval.ttype, 1))
  5836.             yyval.ttype = NULL_TREE;
  5837.           else if (current_aggr == signature_type_node
  5838.                && (! type) && (! IS_SIGNATURE (type)))
  5839.             {
  5840.               error ("class name not allowed as base signature");
  5841.               yyval.ttype = NULL_TREE;
  5842.             }
  5843.           else if (current_aggr == signature_type_node)
  5844.             {
  5845.               sorry ("signature inheritance, base type `%s' ignored",
  5846.                  IDENTIFIER_POINTER (yyval.ttype));
  5847.               yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
  5848.             }
  5849.           else if (type && IS_SIGNATURE (type))
  5850.             {
  5851.               error ("signature name not allowed as base class");
  5852.               yyval.ttype = NULL_TREE;
  5853.             }
  5854.           else
  5855.             yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
  5856.         ;
  5857.     break;}
  5858. case 443:
  5859. #line 2358 "parse.y"
  5860. {
  5861.           tree type;
  5862.          do_base_class2:
  5863.           type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
  5864.           if (current_aggr == signature_type_node)
  5865.             error ("access and source specifiers not allowed in signature");
  5866.           if (! is_aggr_typedef (yyvsp[0].ttype, 1))
  5867.             yyval.ttype = NULL_TREE;
  5868.           else if (current_aggr == signature_type_node
  5869.                && (! type) && (! IS_SIGNATURE (type)))
  5870.             {
  5871.               error ("class name not allowed as base signature");
  5872.               yyval.ttype = NULL_TREE;
  5873.             }
  5874.           else if (current_aggr == signature_type_node)
  5875.             {
  5876.               sorry ("signature inheritance, base type `%s' ignored",
  5877.                  IDENTIFIER_POINTER (yyval.ttype));
  5878.               yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
  5879.             }
  5880.           else if (type && IS_SIGNATURE (type))
  5881.             {
  5882.               error ("signature name not allowed as base class");
  5883.               yyval.ttype = NULL_TREE;
  5884.             }
  5885.           else
  5886.             yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
  5887.         ;
  5888.     break;}
  5889. case 445:
  5890. #line 2391 "parse.y"
  5891. {
  5892.           if (current_aggr == signature_type_node)
  5893.             {
  5894.               if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
  5895.             {
  5896.               sorry ("`sigof' as base signature specifier");
  5897.               /* need to return some dummy signature identifier */
  5898.               yyval.ttype = yyvsp[-1].ttype;
  5899.             }
  5900.               else
  5901.             {
  5902.               error ("`sigof' applied to non-aggregate expression");
  5903.               yyval.ttype = error_mark_node;
  5904.             }
  5905.             }
  5906.           else
  5907.             {
  5908.               error ("`sigof' in struct or class declaration");
  5909.               yyval.ttype = error_mark_node;
  5910.             }
  5911.         ;
  5912.     break;}
  5913. case 446:
  5914. #line 2413 "parse.y"
  5915. {
  5916.           if (current_aggr == signature_type_node)
  5917.             {
  5918.               if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
  5919.             {
  5920.               sorry ("`sigof' as base signature specifier");
  5921.               /* need to return some dummy signature identifier */
  5922.               yyval.ttype = yyvsp[-1].ttype;
  5923.             }
  5924.               else
  5925.             {
  5926.               error ("`sigof' applied to non-aggregate expression");
  5927.               yyval.ttype = error_mark_node;
  5928.             }
  5929.             }
  5930.           else
  5931.             {
  5932.               error ("`sigof' in struct or class declaration");
  5933.               yyval.ttype = error_mark_node;
  5934.             }
  5935.         ;
  5936.     break;}
  5937. case 448:
  5938. #line 2439 "parse.y"
  5939. { if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
  5940.             sorry ("non-virtual access");
  5941.           yyval.itype = access_default_virtual; ;
  5942.     break;}
  5943. case 449:
  5944. #line 2443 "parse.y"
  5945. { int err = 0;
  5946.           if (yyvsp[0].itype == access_protected)
  5947.             {
  5948.               warning ("`protected' access not implemented");
  5949.               yyvsp[0].itype = access_public;
  5950.               err++;
  5951.             }
  5952.           else if (yyvsp[0].itype == access_public)
  5953.             {
  5954.               if (yyvsp[-1].itype == access_private)
  5955.             {
  5956.             mixed:
  5957.               error ("base class cannot be public and private");
  5958.             }
  5959.               else if (yyvsp[-1].itype == access_default_virtual)
  5960.             yyval.itype = access_public_virtual;
  5961.             }
  5962.           else /* $2 == access_private */
  5963.             {
  5964.               if (yyvsp[-1].itype == access_public)
  5965.             goto mixed;
  5966.               else if (yyvsp[-1].itype == access_default_virtual)
  5967.             yyval.itype = access_private_virtual;
  5968.             }
  5969.         ;
  5970.     break;}
  5971. case 450:
  5972. #line 2469 "parse.y"
  5973. { if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
  5974.             sorry ("non-virtual access");
  5975.           if (yyval.itype == access_public)
  5976.             yyval.itype = access_public_virtual;
  5977.           else if (yyval.itype == access_private)
  5978.             yyval.itype = access_private_virtual; ;
  5979.     break;}
  5980. case 451:
  5981. #line 2478 "parse.y"
  5982. { tree t = yyvsp[-1].ttype;
  5983.           push_obstacks_nochange ();
  5984.           end_temporary_allocation ();
  5985.  
  5986.           if (! IS_AGGR_TYPE (t))
  5987.             {
  5988.               t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
  5989.               TYPE_NAME (t) = get_identifier ("erroneous type");
  5990.             }
  5991.           if (TYPE_SIZE (t))
  5992.             duplicate_tag_error (t);
  5993.                   if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
  5994.                     {
  5995.                       t = make_lang_type (TREE_CODE (t));
  5996.                       pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
  5997.                       yyvsp[-1].ttype = t;
  5998.                     }
  5999.           pushclass (t, 0);
  6000.           TYPE_BEING_DEFINED (t) = 1;
  6001.           /* Reset the interface data, at the earliest possible
  6002.              moment, as it might have been set via a class foo;
  6003.              before.  */
  6004.           /* Don't change signatures.  */
  6005.           if (! IS_SIGNATURE (t))
  6006.             {
  6007.               extern tree pending_vtables;
  6008.               int needs_writing;
  6009.               tree name = TYPE_IDENTIFIER (t);
  6010.  
  6011.               if (! ANON_AGGRNAME_P (name))
  6012.             {
  6013.               CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
  6014.               SET_CLASSTYPE_INTERFACE_UNKNOWN_X
  6015.                 (t, interface_unknown);
  6016.             }
  6017.  
  6018.               /* Record how to set the access of this class's
  6019.              virtual functions.  If write_virtuals == 2 or 3, then
  6020.              inline virtuals are ``extern inline''.  */
  6021.               switch (write_virtuals)
  6022.             {
  6023.             case 0:
  6024.             case 1:
  6025.               needs_writing = 1;
  6026.               break;
  6027.             case 2:
  6028.               needs_writing = !! value_member (name, pending_vtables);
  6029.               break;
  6030.             case 3:
  6031.               needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
  6032.                 && CLASSTYPE_INTERFACE_KNOWN (t);
  6033.               break;
  6034.             default:
  6035.               needs_writing = 0;
  6036.             }
  6037.               CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
  6038.             }
  6039. #if 0
  6040.           t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
  6041.           if (t && IDENTIFIER_TEMPLATE (t))
  6042.             overload_template_name (t, 1);
  6043. #endif
  6044.         ;
  6045.     break;}
  6046. case 452:
  6047. #line 2545 "parse.y"
  6048. { yyval.ttype = NULL_TREE; ;
  6049.     break;}
  6050. case 453:
  6051. #line 2547 "parse.y"
  6052. {
  6053.           if (current_aggr == signature_type_node)
  6054.             yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
  6055.           else
  6056.             yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
  6057.         ;
  6058.     break;}
  6059. case 454:
  6060. #line 2554 "parse.y"
  6061. {
  6062.           tree visspec = (tree) yyvsp[-2].itype;
  6063.  
  6064.           if (current_aggr == signature_type_node)
  6065.             {
  6066.               error ("access specifier not allowed in signature");
  6067.               visspec = (tree) access_public;
  6068.             }
  6069.           yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
  6070.         ;
  6071.     break;}
  6072. case 455:
  6073. #line 2565 "parse.y"
  6074. {
  6075.           if (current_aggr == signature_type_node)
  6076.             error ("access specifier not allowed in signature");
  6077.         ;
  6078.     break;}
  6079. case 456:
  6080. #line 2575 "parse.y"
  6081. { if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; 
  6082.         ;
  6083.     break;}
  6084. case 457:
  6085. #line 2578 "parse.y"
  6086. { /* In pushdecl, we created a reverse list of names
  6087.              in this binding level.  Make sure that the chain
  6088.              of what we're trying to add isn't the item itself
  6089.              (which can happen with what pushdecl's doing).  */
  6090.           if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
  6091.             {
  6092.               if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
  6093.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6094.               else
  6095.             yyval.ttype = yyvsp[0].ttype;
  6096.             }
  6097.         ;
  6098.     break;}
  6099. case 459:
  6100. #line 2595 "parse.y"
  6101. { error ("missing ';' before right brace");
  6102.           yyungetc ('}', 0); ;
  6103.     break;}
  6104. case 460:
  6105. #line 2600 "parse.y"
  6106. { yyval.ttype = finish_method (yyval.ttype); ;
  6107.     break;}
  6108. case 461:
  6109. #line 2602 "parse.y"
  6110. { yyval.ttype = finish_method (yyval.ttype); ;
  6111.     break;}
  6112. case 462:
  6113. #line 2604 "parse.y"
  6114. { yyval.ttype = NULL_TREE; ;
  6115.     break;}
  6116. case 463:
  6117. #line 2612 "parse.y"
  6118. {
  6119.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6120.         ;
  6121.     break;}
  6122. case 464:
  6123. #line 2616 "parse.y"
  6124.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6125.         ;
  6126.     break;}
  6127. case 465:
  6128. #line 2620 "parse.y"
  6129. { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6130.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6131.     break;}
  6132. case 466:
  6133. #line 2623 "parse.y"
  6134. { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
  6135.     break;}
  6136. case 467:
  6137. #line 2625 "parse.y"
  6138. { yyval.ttype = NULL_TREE; ;
  6139.     break;}
  6140. case 468:
  6141. #line 2636 "parse.y"
  6142. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-8].ttype),
  6143.                      yyvsp[-6].ttype, yyvsp[-4].ttype);
  6144.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-8].ttype), yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6145.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6146.     break;}
  6147. case 469:
  6148. #line 2641 "parse.y"
  6149. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-6].ttype),
  6150.                      empty_parms (), yyvsp[-4].ttype);
  6151.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-6].ttype), yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6152.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6153.     break;}
  6154. case 470:
  6155. #line 2646 "parse.y"
  6156. { yyval.ttype = do_class_using_decl (yyvsp[0].ttype); ;
  6157.     break;}
  6158. case 471:
  6159. #line 2652 "parse.y"
  6160. { yyval.ttype = NULL_TREE; ;
  6161.     break;}
  6162. case 473:
  6163. #line 2655 "parse.y"
  6164. {
  6165.           /* In this context, void_type_node encodes
  6166.              friends.  They have been recorded elsewhere.  */
  6167.           if (yyval.ttype == void_type_node)
  6168.             yyval.ttype = yyvsp[0].ttype;
  6169.           else
  6170.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6171.         ;
  6172.     break;}
  6173. case 474:
  6174. #line 2667 "parse.y"
  6175. { yyval.ttype = NULL_TREE; ;
  6176.     break;}
  6177. case 476:
  6178. #line 2670 "parse.y"
  6179. {
  6180.           /* In this context, void_type_node encodes
  6181.              friends.  They have been recorded elsewhere.  */
  6182.           if (yyval.ttype == void_type_node)
  6183.             yyval.ttype = yyvsp[0].ttype;
  6184.           else
  6185.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6186.         ;
  6187.     break;}
  6188. case 481:
  6189. #line 2692 "parse.y"
  6190. { current_declspecs = yyvsp[-5].ttype;
  6191.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6192.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6193.     break;}
  6194. case 482:
  6195. #line 2696 "parse.y"
  6196. { current_declspecs = yyvsp[-4].ttype;
  6197.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6198.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6199.     break;}
  6200. case 483:
  6201. #line 2703 "parse.y"
  6202. { current_declspecs = yyvsp[-5].ttype;
  6203.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6204.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6205.     break;}
  6206. case 484:
  6207. #line 2707 "parse.y"
  6208. { current_declspecs = yyvsp[-4].ttype;
  6209.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6210.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6211.     break;}
  6212. case 485:
  6213. #line 2711 "parse.y"
  6214. { current_declspecs = yyvsp[-3].ttype;
  6215.           yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6216.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6217.     break;}
  6218. case 486:
  6219. #line 2718 "parse.y"
  6220. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6221.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6222.     break;}
  6223. case 487:
  6224. #line 2721 "parse.y"
  6225. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6226.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6227.     break;}
  6228. case 488:
  6229. #line 2727 "parse.y"
  6230. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-2].ttype);
  6231.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype, prefix_attributes); ;
  6232.     break;}
  6233. case 489:
  6234. #line 2730 "parse.y"
  6235. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6236.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6237.     break;}
  6238. case 490:
  6239. #line 2733 "parse.y"
  6240. { yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6241.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  6242.     break;}
  6243. case 492:
  6244. #line 2744 "parse.y"
  6245. { TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  6246.     break;}
  6247. case 493:
  6248. #line 2749 "parse.y"
  6249. { yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
  6250.     break;}
  6251. case 494:
  6252. #line 2751 "parse.y"
  6253. { yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
  6254.     break;}
  6255. case 495:
  6256. #line 2757 "parse.y"
  6257. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  6258.     break;}
  6259. case 496:
  6260. #line 2759 "parse.y"
  6261. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  6262.     break;}
  6263. case 497:
  6264. #line 2763 "parse.y"
  6265. {
  6266.           if (pedantic)
  6267.             pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
  6268.           yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
  6269.           yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
  6270.         ;
  6271.     break;}
  6272. case 498:
  6273. #line 2773 "parse.y"
  6274. { yyval.ttype = NULL_TREE; ;
  6275.     break;}
  6276. case 499:
  6277. #line 2775 "parse.y"
  6278. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6279.     break;}
  6280. case 500:
  6281. #line 2780 "parse.y"
  6282. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  6283.     break;}
  6284. case 501:
  6285. #line 2782 "parse.y"
  6286. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6287.     break;}
  6288. case 502:
  6289. #line 2789 "parse.y"
  6290. { yyval.itype = suspend_momentary (); ;
  6291.     break;}
  6292. case 503:
  6293. #line 2794 "parse.y"
  6294. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
  6295.     break;}
  6296. case 504:
  6297. #line 2800 "parse.y"
  6298. { resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
  6299.     break;}
  6300. case 505:
  6301. #line 2802 "parse.y"
  6302. { resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = yyvsp[-1].ttype; ;
  6303.     break;}
  6304. case 506:
  6305. #line 2804 "parse.y"
  6306. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = empty_parms (); ;
  6307.     break;}
  6308. case 507:
  6309. #line 2806 "parse.y"
  6310. { resume_momentary ((int) yyvsp[-3].itype); yyval.ttype = NULL_TREE; ;
  6311.     break;}
  6312. case 508:
  6313. #line 2813 "parse.y"
  6314. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6315.     break;}
  6316. case 509:
  6317. #line 2815 "parse.y"
  6318. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6319.     break;}
  6320. case 510:
  6321. #line 2817 "parse.y"
  6322. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6323.     break;}
  6324. case 511:
  6325. #line 2819 "parse.y"
  6326. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6327.     break;}
  6328. case 512:
  6329. #line 2821 "parse.y"
  6330. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6331.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6332.         ;
  6333.     break;}
  6334. case 514:
  6335. #line 2829 "parse.y"
  6336. {
  6337.           /* Remember that this name has been used in the class
  6338.              definition, as per [class.scope0] */
  6339.           if (current_class_type
  6340.               && TYPE_BEING_DEFINED (current_class_type)
  6341.               && ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
  6342.             {
  6343.               tree t = lookup_name (yyval.ttype, -2);
  6344.               if (t)
  6345.             pushdecl_class_level (t);
  6346.             }
  6347.         ;
  6348.     break;}
  6349. case 516:
  6350. #line 2846 "parse.y"
  6351. { yyval.ttype = yyvsp[0].ttype; ;
  6352.     break;}
  6353. case 517:
  6354. #line 2851 "parse.y"
  6355. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6356.     break;}
  6357. case 518:
  6358. #line 2853 "parse.y"
  6359. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6360.     break;}
  6361. case 519:
  6362. #line 2855 "parse.y"
  6363. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6364.     break;}
  6365. case 520:
  6366. #line 2857 "parse.y"
  6367. { yyval.ttype = yyvsp[-1].ttype; ;
  6368.     break;}
  6369. case 521:
  6370. #line 2859 "parse.y"
  6371. { push_nested_class (TREE_TYPE (yyval.ttype), 3);
  6372.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
  6373.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6374.     break;}
  6375. case 523:
  6376. #line 2870 "parse.y"
  6377. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6378.     break;}
  6379. case 524:
  6380. #line 2872 "parse.y"
  6381. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6382.     break;}
  6383. case 525:
  6384. #line 2874 "parse.y"
  6385. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6386.     break;}
  6387. case 526:
  6388. #line 2876 "parse.y"
  6389. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6390.     break;}
  6391. case 527:
  6392. #line 2878 "parse.y"
  6393. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6394.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6395.         ;
  6396.     break;}
  6397. case 529:
  6398. #line 2886 "parse.y"
  6399. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6400.     break;}
  6401. case 530:
  6402. #line 2888 "parse.y"
  6403. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6404.     break;}
  6405. case 531:
  6406. #line 2890 "parse.y"
  6407. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6408.     break;}
  6409. case 532:
  6410. #line 2892 "parse.y"
  6411. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6412.     break;}
  6413. case 533:
  6414. #line 2894 "parse.y"
  6415. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6416.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6417.         ;
  6418.     break;}
  6419. case 535:
  6420. #line 2902 "parse.y"
  6421. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6422.     break;}
  6423. case 536:
  6424. #line 2904 "parse.y"
  6425. { yyval.ttype = yyvsp[-1].ttype; ;
  6426.     break;}
  6427. case 537:
  6428. #line 2906 "parse.y"
  6429. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6430.     break;}
  6431. case 538:
  6432. #line 2908 "parse.y"
  6433. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6434.     break;}
  6435. case 539:
  6436. #line 2910 "parse.y"
  6437. { push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
  6438.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6439.     break;}
  6440. case 540:
  6441. #line 2916 "parse.y"
  6442. { got_scope = NULL_TREE;
  6443.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6444.     break;}
  6445. case 541:
  6446. #line 2922 "parse.y"
  6447. { got_scope = NULL_TREE;
  6448.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6449.     break;}
  6450. case 543:
  6451. #line 2929 "parse.y"
  6452. { yyval.ttype = yyvsp[0].ttype; ;
  6453.     break;}
  6454. case 544:
  6455. #line 2934 "parse.y"
  6456. { yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
  6457.     break;}
  6458. case 545:
  6459. #line 2936 "parse.y"
  6460. { yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
  6461.     break;}
  6462. case 546:
  6463. #line 2938 "parse.y"
  6464. { yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
  6465.     break;}
  6466. case 550:
  6467. #line 2949 "parse.y"
  6468. { yyval.ttype = yyvsp[0].ttype; ;
  6469.     break;}
  6470. case 551:
  6471. #line 2956 "parse.y"
  6472. { got_scope = TREE_TYPE (yyval.ttype); ;
  6473.     break;}
  6474. case 552:
  6475. #line 2958 "parse.y"
  6476. { got_scope = yyval.ttype; ;
  6477.     break;}
  6478. case 553:
  6479. #line 2960 "parse.y"
  6480. { got_scope = TREE_TYPE (yyval.ttype); ;
  6481.     break;}
  6482. case 555:
  6483. #line 2976 "parse.y"
  6484. { yyval.ttype = yyvsp[0].ttype; ;
  6485.     break;}
  6486. case 557:
  6487. #line 2982 "parse.y"
  6488. { yyval.ttype = yyvsp[0].ttype; ;
  6489.     break;}
  6490. case 558:
  6491. #line 2987 "parse.y"
  6492. { got_scope = NULL_TREE; ;
  6493.     break;}
  6494. case 559:
  6495. #line 2989 "parse.y"
  6496. { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
  6497.     break;}
  6498. case 560:
  6499. #line 2996 "parse.y"
  6500. { got_scope = void_type_node; ;
  6501.     break;}
  6502. case 561:
  6503. #line 3002 "parse.y"
  6504. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6505.     break;}
  6506. case 562:
  6507. #line 3004 "parse.y"
  6508. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6509.     break;}
  6510. case 563:
  6511. #line 3006 "parse.y"
  6512. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6513.     break;}
  6514. case 564:
  6515. #line 3008 "parse.y"
  6516. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6517.     break;}
  6518. case 565:
  6519. #line 3010 "parse.y"
  6520. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6521.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6522.         ;
  6523.     break;}
  6524. case 566:
  6525. #line 3014 "parse.y"
  6526. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6527.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6528.         ;
  6529.     break;}
  6530. case 568:
  6531. #line 3023 "parse.y"
  6532. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6533.     break;}
  6534. case 569:
  6535. #line 3025 "parse.y"
  6536. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6537.     break;}
  6538. case 570:
  6539. #line 3031 "parse.y"
  6540. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6541.     break;}
  6542. case 571:
  6543. #line 3033 "parse.y"
  6544. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6545.     break;}
  6546. case 572:
  6547. #line 3035 "parse.y"
  6548. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6549.     break;}
  6550. case 573:
  6551. #line 3037 "parse.y"
  6552. { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
  6553.     break;}
  6554. case 574:
  6555. #line 3039 "parse.y"
  6556. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6557.     break;}
  6558. case 575:
  6559. #line 3041 "parse.y"
  6560. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6561.     break;}
  6562. case 576:
  6563. #line 3043 "parse.y"
  6564. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6565.     break;}
  6566. case 577:
  6567. #line 3045 "parse.y"
  6568. { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
  6569.     break;}
  6570. case 578:
  6571. #line 3047 "parse.y"
  6572. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6573.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6574.         ;
  6575.     break;}
  6576. case 579:
  6577. #line 3051 "parse.y"
  6578. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6579.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6580.         ;
  6581.     break;}
  6582. case 581:
  6583. #line 3060 "parse.y"
  6584. { yyval.ttype = yyvsp[-1].ttype; ;
  6585.     break;}
  6586. case 583:
  6587. #line 3064 "parse.y"
  6588. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6589.     break;}
  6590. case 584:
  6591. #line 3066 "parse.y"
  6592. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6593.     break;}
  6594. case 585:
  6595. #line 3068 "parse.y"
  6596. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6597.     break;}
  6598. case 586:
  6599. #line 3070 "parse.y"
  6600. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6601.     break;}
  6602. case 587:
  6603. #line 3072 "parse.y"
  6604. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6605.     break;}
  6606. case 588:
  6607. #line 3074 "parse.y"
  6608. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6609.     break;}
  6610. case 589:
  6611. #line 3076 "parse.y"
  6612. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6613.     break;}
  6614. case 590:
  6615. #line 3078 "parse.y"
  6616. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6617.     break;}
  6618. case 591:
  6619. #line 3080 "parse.y"
  6620. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  6621.     break;}
  6622. case 597:
  6623. #line 3102 "parse.y"
  6624. { emit_line_note (input_filename, lineno);
  6625.           pushlevel (0);
  6626.           clear_last_expr ();
  6627.           push_momentary ();
  6628.           expand_start_bindings (0); ;
  6629.     break;}
  6630. case 598:
  6631. #line 3110 "parse.y"
  6632. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6633.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6634.           pop_momentary (); ;
  6635.     break;}
  6636. case 600:
  6637. #line 3120 "parse.y"
  6638. { if (pedantic)
  6639.             pedwarn ("ANSI C++ forbids label declarations"); ;
  6640.     break;}
  6641. case 603:
  6642. #line 3131 "parse.y"
  6643. { tree link;
  6644.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  6645.             {
  6646.               tree label = shadow_label (TREE_VALUE (link));
  6647.               C_DECLARED_LABEL_FLAG (label) = 1;
  6648.               declare_nonlocal_label (label);
  6649.             }
  6650.         ;
  6651.     break;}
  6652. case 604:
  6653. #line 3145 "parse.y"
  6654. {;
  6655.     break;}
  6656. case 606:
  6657. #line 3150 "parse.y"
  6658. { yyval.ttype = yyvsp[0].ttype; ;
  6659.     break;}
  6660. case 607:
  6661. #line 3155 "parse.y"
  6662. { cond_stmt_keyword = "if"; ;
  6663.     break;}
  6664. case 608:
  6665. #line 3157 "parse.y"
  6666. { emit_line_note (input_filename, lineno);
  6667.           expand_start_cond (yyvsp[0].ttype, 0); ;
  6668.     break;}
  6669. case 610:
  6670. #line 3164 "parse.y"
  6671. { finish_stmt (); ;
  6672.     break;}
  6673. case 611:
  6674. #line 3166 "parse.y"
  6675. { yyval.ttype = yyvsp[0].ttype; ;
  6676.     break;}
  6677. case 612:
  6678. #line 3171 "parse.y"
  6679. { finish_stmt (); ;
  6680.     break;}
  6681. case 614:
  6682. #line 3177 "parse.y"
  6683. { finish_stmt ();
  6684.           prefix_attributes = NULL_TREE; ;
  6685.     break;}
  6686. case 615:
  6687. #line 3180 "parse.y"
  6688. {
  6689.           tree expr = yyvsp[-1].ttype;
  6690.           emit_line_note (input_filename, lineno);
  6691.           /* Do default conversion if safe and possibly important,
  6692.              in case within ({...}).  */
  6693.           if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  6694.                && lvalue_p (expr))
  6695.               || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
  6696.             expr = default_conversion (expr);
  6697.           cplus_expand_expr_stmt (expr);
  6698.           clear_momentary ();
  6699.           finish_stmt (); ;
  6700.     break;}
  6701. case 616:
  6702. #line 3193 "parse.y"
  6703. { expand_start_else (); ;
  6704.     break;}
  6705. case 617:
  6706. #line 3195 "parse.y"
  6707. { expand_end_cond (); ;
  6708.     break;}
  6709. case 618:
  6710. #line 3197 "parse.y"
  6711. { finish_stmt (); ;
  6712.     break;}
  6713. case 619:
  6714. #line 3199 "parse.y"
  6715. { expand_end_cond ();
  6716.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6717.           poplevel (kept_level_p (), 1, 0);
  6718.           pop_momentary ();
  6719.           finish_stmt (); ;
  6720.     break;}
  6721. case 620:
  6722. #line 3205 "parse.y"
  6723. { emit_nop ();
  6724.           emit_line_note (input_filename, lineno);
  6725.           expand_start_loop (1);
  6726.           cond_stmt_keyword = "while"; ;
  6727.     break;}
  6728. case 621:
  6729. #line 3210 "parse.y"
  6730. { expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
  6731.     break;}
  6732. case 622:
  6733. #line 3212 "parse.y"
  6734. { expand_end_loop ();
  6735.           finish_stmt (); ;
  6736.     break;}
  6737. case 623:
  6738. #line 3215 "parse.y"
  6739. { emit_nop ();
  6740.           emit_line_note (input_filename, lineno);
  6741.           expand_start_loop_continue_elsewhere (1); ;
  6742.     break;}
  6743. case 624:
  6744. #line 3219 "parse.y"
  6745. { expand_loop_continue_here ();
  6746.           cond_stmt_keyword = "do"; ;
  6747.     break;}
  6748. case 625:
  6749. #line 3222 "parse.y"
  6750. { emit_line_note (input_filename, lineno);
  6751.           expand_exit_loop_if_false (0, yyvsp[-1].ttype);
  6752.           expand_end_loop ();
  6753.           clear_momentary ();
  6754.           finish_stmt (); ;
  6755.     break;}
  6756. case 626:
  6757. #line 3228 "parse.y"
  6758. { emit_line_note (input_filename, lineno);
  6759.           if (flag_new_for_scope)
  6760.             {
  6761.               /* Conditionalize .pushlevel */
  6762.               pushlevel (0);
  6763.               clear_last_expr ();
  6764.               push_momentary ();
  6765.               expand_start_bindings (0);
  6766.             }
  6767.         ;
  6768.     break;}
  6769. case 627:
  6770. #line 3239 "parse.y"
  6771. { emit_nop ();
  6772.           emit_line_note (input_filename, lineno);
  6773.           expand_start_loop_continue_elsewhere (1); ;
  6774.     break;}
  6775. case 628:
  6776. #line 3243 "parse.y"
  6777. { emit_line_note (input_filename, lineno);
  6778.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6779.     break;}
  6780. case 629:
  6781. #line 3248 "parse.y"
  6782. { push_momentary (); ;
  6783.     break;}
  6784. case 630:
  6785. #line 3250 "parse.y"
  6786. { emit_line_note (input_filename, lineno);
  6787.           expand_loop_continue_here ();
  6788.           if (yyvsp[-4].ttype) cplus_expand_expr_stmt (yyvsp[-4].ttype);
  6789.           pop_momentary ();
  6790.           expand_end_loop ();
  6791.           if (flag_new_for_scope)
  6792.             {
  6793.               expand_end_bindings (getdecls (), kept_level_p (), 1);
  6794.               poplevel (kept_level_p (), 1, 0);
  6795.               pop_momentary ();
  6796.             }
  6797.           finish_stmt (); ;
  6798.     break;}
  6799. case 631:
  6800. #line 3263 "parse.y"
  6801. { emit_line_note (input_filename, lineno);
  6802.           c_expand_start_case (yyvsp[-1].ttype);
  6803.           push_switch ();
  6804.           /* Don't let the tree nodes for $4 be discarded by
  6805.              clear_momentary during the parsing of the next stmt.  */
  6806.           push_momentary (); ;
  6807.     break;}
  6808. case 632:
  6809. #line 3270 "parse.y"
  6810. { expand_end_case (yyvsp[-3].ttype);
  6811.           pop_momentary ();
  6812.           pop_switch (); ;
  6813.     break;}
  6814. case 633:
  6815. #line 3274 "parse.y"
  6816. { finish_stmt (); ;
  6817.     break;}
  6818. case 634:
  6819. #line 3276 "parse.y"
  6820. { register tree value = check_cp_case_value (yyvsp[-1].ttype);
  6821.           register tree label
  6822.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6823.  
  6824.           if (value != error_mark_node)
  6825.             {
  6826.               tree duplicate;
  6827.               int success = pushcase (value, convert_and_check,
  6828.                           label, &duplicate);
  6829.               if (success == 1)
  6830.             cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
  6831.               else if (success == 2)
  6832.             {
  6833.               cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
  6834.               cp_error_at ("previously used here", duplicate);
  6835.             }
  6836.               else if (success == 3)
  6837.             warning ("case value out of range");
  6838.               else if (success == 5)
  6839.             cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
  6840.             }
  6841.           define_case_label (label);
  6842.         ;
  6843.     break;}
  6844. case 636:
  6845. #line 3301 "parse.y"
  6846. { register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
  6847.           register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
  6848.           register tree label
  6849.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6850.  
  6851.           if (pedantic)
  6852.             pedwarn ("ANSI C++ forbids range expressions in switch statement");
  6853.           if (value1 != error_mark_node
  6854.               && value2 != error_mark_node)
  6855.             {
  6856.               tree duplicate;
  6857.               int success = pushcase_range (value1, value2,
  6858.                             convert_and_check, label,
  6859.                             &duplicate);
  6860.               if (success == 1)
  6861.             error ("case label not within a switch statement");
  6862.               else if (success == 2)
  6863.             {
  6864.               error ("duplicate (or overlapping) case value");
  6865.               error_with_decl (duplicate, "this is the first entry overlapping that value");
  6866.             }
  6867.               else if (success == 3)
  6868.             warning ("case value out of range");
  6869.               else if (success == 4)
  6870.             warning ("empty range specified");
  6871.               else if (success == 5)
  6872.             error ("case label within scope of cleanup or variable array");
  6873.             }
  6874.           define_case_label (label);
  6875.         ;
  6876.     break;}
  6877. case 638:
  6878. #line 3333 "parse.y"
  6879. {
  6880.           tree duplicate;
  6881.           register tree label
  6882.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6883.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  6884.           if (success == 1)
  6885.             error ("default label not within a switch statement");
  6886.           else if (success == 2)
  6887.             {
  6888.               error ("multiple default labels in one switch");
  6889.               error_with_decl (duplicate, "this is the first default label");
  6890.             }
  6891.           define_case_label (NULL_TREE);
  6892.         ;
  6893.     break;}
  6894. case 640:
  6895. #line 3349 "parse.y"
  6896. { emit_line_note (input_filename, lineno);
  6897.           if ( ! expand_exit_something ())
  6898.             error ("break statement not within loop or switch"); ;
  6899.     break;}
  6900. case 641:
  6901. #line 3353 "parse.y"
  6902. { emit_line_note (input_filename, lineno);
  6903.           if (! expand_continue_loop (0))
  6904.             error ("continue statement not within a loop"); ;
  6905.     break;}
  6906. case 642:
  6907. #line 3357 "parse.y"
  6908. { emit_line_note (input_filename, lineno);
  6909.           c_expand_return (NULL_TREE); ;
  6910.     break;}
  6911. case 643:
  6912. #line 3360 "parse.y"
  6913. { emit_line_note (input_filename, lineno);
  6914.           c_expand_return (yyvsp[-1].ttype);
  6915.           finish_stmt ();
  6916.         ;
  6917.     break;}
  6918. case 644:
  6919. #line 3365 "parse.y"
  6920. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  6921.           emit_line_note (input_filename, lineno);
  6922.           expand_asm (yyvsp[-2].ttype);
  6923.           finish_stmt ();
  6924.         ;
  6925.     break;}
  6926. case 645:
  6927. #line 3372 "parse.y"
  6928. { if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
  6929.           emit_line_note (input_filename, lineno);
  6930.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  6931.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  6932.                      input_filename, lineno);
  6933.           finish_stmt ();
  6934.         ;
  6935.     break;}
  6936. case 646:
  6937. #line 3381 "parse.y"
  6938. { if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
  6939.           emit_line_note (input_filename, lineno);
  6940.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  6941.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  6942.                      input_filename, lineno);
  6943.           finish_stmt ();
  6944.         ;
  6945.     break;}
  6946. case 647:
  6947. #line 3391 "parse.y"
  6948. { if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
  6949.           emit_line_note (input_filename, lineno);
  6950.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  6951.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  6952.                      input_filename, lineno);
  6953.           finish_stmt ();
  6954.         ;
  6955.     break;}
  6956. case 648:
  6957. #line 3399 "parse.y"
  6958. { emit_line_note (input_filename, lineno);
  6959.           expand_computed_goto (yyvsp[-1].ttype); ;
  6960.     break;}
  6961. case 649:
  6962. #line 3402 "parse.y"
  6963. { tree decl;
  6964.           emit_line_note (input_filename, lineno);
  6965.           decl = lookup_label (yyvsp[-1].ttype);
  6966.           TREE_USED (decl) = 1;
  6967.           expand_goto (decl); ;
  6968.     break;}
  6969. case 650:
  6970. #line 3408 "parse.y"
  6971. { finish_stmt (); ;
  6972.     break;}
  6973. case 651:
  6974. #line 3410 "parse.y"
  6975. { error ("label must be followed by statement");
  6976.           yyungetc ('}', 0);
  6977.           finish_stmt (); ;
  6978.     break;}
  6979. case 652:
  6980. #line 3414 "parse.y"
  6981. { finish_stmt (); ;
  6982.     break;}
  6983. case 654:
  6984. #line 3420 "parse.y"
  6985. { expand_start_try_stmts (); ;
  6986.     break;}
  6987. case 655:
  6988. #line 3422 "parse.y"
  6989. { expand_end_try_stmts ();
  6990.           expand_start_all_catch (); ;
  6991.     break;}
  6992. case 656:
  6993. #line 3425 "parse.y"
  6994. { expand_end_all_catch (); ;
  6995.     break;}
  6996. case 658:
  6997. #line 3431 "parse.y"
  6998. { expand_end_catch_block (); ;
  6999.     break;}
  7000. case 662:
  7001. #line 3442 "parse.y"
  7002. { expand_start_catch_block (NULL_TREE, NULL_TREE); ;
  7003.     break;}
  7004. case 663:
  7005. #line 3454 "parse.y"
  7006. { expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
  7007.                         TREE_VALUE (yyvsp[-1].ttype)); ;
  7008.     break;}
  7009. case 664:
  7010. #line 3460 "parse.y"
  7011. { tree label;
  7012.         do_label:
  7013.           label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  7014.           if (label)
  7015.             expand_label (label);
  7016.         ;
  7017.     break;}
  7018. case 665:
  7019. #line 3467 "parse.y"
  7020. { goto do_label; ;
  7021.     break;}
  7022. case 666:
  7023. #line 3469 "parse.y"
  7024. { goto do_label; ;
  7025.     break;}
  7026. case 667:
  7027. #line 3474 "parse.y"
  7028. { if (yyvsp[-1].ttype) cplus_expand_expr_stmt (yyvsp[-1].ttype); ;
  7029.     break;}
  7030. case 670:
  7031. #line 3483 "parse.y"
  7032. { emit_line_note (input_filename, lineno);
  7033.           yyval.ttype = NULL_TREE; ;
  7034.     break;}
  7035. case 671:
  7036. #line 3486 "parse.y"
  7037. { emit_line_note (input_filename, lineno); ;
  7038.     break;}
  7039. case 672:
  7040. #line 3491 "parse.y"
  7041. { yyval.ttype = NULL_TREE; ;
  7042.     break;}
  7043. case 674:
  7044. #line 3494 "parse.y"
  7045. { yyval.ttype = NULL_TREE; ;
  7046.     break;}
  7047. case 675:
  7048. #line 3500 "parse.y"
  7049. { yyval.ttype = NULL_TREE; ;
  7050.     break;}
  7051. case 678:
  7052. #line 3507 "parse.y"
  7053. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7054.     break;}
  7055. case 679:
  7056. #line 3512 "parse.y"
  7057. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
  7058.     break;}
  7059. case 680:
  7060. #line 3517 "parse.y"
  7061. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
  7062.     break;}
  7063. case 681:
  7064. #line 3519 "parse.y"
  7065. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  7066.     break;}
  7067. case 682:
  7068. #line 3529 "parse.y"
  7069. {
  7070.           if (strict_prototype)
  7071.             yyval.ttype = void_list_node;
  7072.           else
  7073.             yyval.ttype = NULL_TREE;
  7074.         ;
  7075.     break;}
  7076. case 684:
  7077. #line 3537 "parse.y"
  7078. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7079.           TREE_PARMLIST (yyval.ttype) = 1; ;
  7080.     break;}
  7081. case 685:
  7082. #line 3545 "parse.y"
  7083. {
  7084.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7085.           TREE_PARMLIST (yyval.ttype) = 1;
  7086.         ;
  7087.     break;}
  7088. case 686:
  7089. #line 3550 "parse.y"
  7090. {
  7091.           TREE_PARMLIST (yyval.ttype) = 1;
  7092.         ;
  7093.     break;}
  7094. case 687:
  7095. #line 3555 "parse.y"
  7096. {
  7097.           TREE_PARMLIST (yyval.ttype) = 1;
  7098.         ;
  7099.     break;}
  7100. case 688:
  7101. #line 3559 "parse.y"
  7102. {
  7103.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); 
  7104.           TREE_PARMLIST (yyval.ttype) = 1;
  7105.         ;
  7106.     break;}
  7107. case 689:
  7108. #line 3564 "parse.y"
  7109. {
  7110.           /* ARM $8.2.5 has this as a boxed-off comment.  */
  7111.           if (pedantic)
  7112.             warning ("use of `...' without a first argument is non-portable");
  7113.           yyval.ttype = NULL_TREE;
  7114.         ;
  7115.     break;}
  7116. case 690:
  7117. #line 3571 "parse.y"
  7118. {
  7119.           TREE_PARMLIST (yyval.ttype) = 1;
  7120.         ;
  7121.     break;}
  7122. case 691:
  7123. #line 3575 "parse.y"
  7124. {
  7125.           TREE_PARMLIST (yyval.ttype) = 1;
  7126.         ;
  7127.     break;}
  7128. case 692:
  7129. #line 3579 "parse.y"
  7130. {
  7131.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
  7132.           TREE_PARMLIST (yyval.ttype) = 1;
  7133.         ;
  7134.     break;}
  7135. case 693:
  7136. #line 3584 "parse.y"
  7137. {
  7138.           /* This helps us recover from really nasty
  7139.              parse errors, for example, a missing right
  7140.              parenthesis.  */
  7141.           yyerror ("possibly missing ')'");
  7142.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7143.           TREE_PARMLIST (yyval.ttype) = 1;
  7144.           yyungetc (':', 0);
  7145.           yychar = ')';
  7146.         ;
  7147.     break;}
  7148. case 694:
  7149. #line 3595 "parse.y"
  7150. {
  7151.           /* This helps us recover from really nasty
  7152.              parse errors, for example, a missing right
  7153.              parenthesis.  */
  7154.           yyerror ("possibly missing ')'");
  7155.           yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7156.           TREE_PARMLIST (yyval.ttype) = 1;
  7157.           yyungetc (':', 0);
  7158.           yychar = ')';
  7159.         ;
  7160.     break;}
  7161. case 695:
  7162. #line 3610 "parse.y"
  7163. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7164.     break;}
  7165. case 696:
  7166. #line 3612 "parse.y"
  7167. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7168.     break;}
  7169. case 697:
  7170. #line 3614 "parse.y"
  7171. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7172.     break;}
  7173. case 698:
  7174. #line 3616 "parse.y"
  7175. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  7176.     break;}
  7177. case 699:
  7178. #line 3618 "parse.y"
  7179. { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
  7180.     break;}
  7181. case 701:
  7182. #line 3624 "parse.y"
  7183. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7184.     break;}
  7185. case 702:
  7186. #line 3647 "parse.y"
  7187. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7188.     break;}
  7189. case 703:
  7190. #line 3649 "parse.y"
  7191. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7192.     break;}
  7193. case 704:
  7194. #line 3651 "parse.y"
  7195. { yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  7196.     break;}
  7197. case 705:
  7198. #line 3653 "parse.y"
  7199. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7200.     break;}
  7201. case 706:
  7202. #line 3655 "parse.y"
  7203. { yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
  7204.     break;}
  7205. case 707:
  7206. #line 3657 "parse.y"
  7207. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7208.     break;}
  7209. case 708:
  7210. #line 3662 "parse.y"
  7211. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7212.     break;}
  7213. case 711:
  7214. #line 3671 "parse.y"
  7215. { see_typename (); ;
  7216.     break;}
  7217. case 712:
  7218. #line 3694 "parse.y"
  7219. {
  7220.           error ("type specifier omitted for parameter");
  7221.           yyval.ttype = build_tree_list (integer_type_node, NULL_TREE);
  7222.         ;
  7223.     break;}
  7224. case 713:
  7225. #line 3699 "parse.y"
  7226. {
  7227.           error ("type specifier omitted for parameter");
  7228.           yyval.ttype = build_tree_list (integer_type_node, yyval.ttype);
  7229.         ;
  7230.     break;}
  7231. case 714:
  7232. #line 3707 "parse.y"
  7233. { yyval.ttype = NULL_TREE; ;
  7234.     break;}
  7235. case 715:
  7236. #line 3709 "parse.y"
  7237. { yyval.ttype = yyvsp[-1].ttype; ;
  7238.     break;}
  7239. case 716:
  7240. #line 3711 "parse.y"
  7241. { yyval.ttype = build_decl_list (NULL_TREE, NULL_TREE); ;
  7242.     break;}
  7243. case 717:
  7244. #line 3716 "parse.y"
  7245. { yyval.ttype = build_decl_list (NULL_TREE, groktypename(yyval.ttype)); ;
  7246.     break;}
  7247. case 719:
  7248. #line 3722 "parse.y"
  7249. {
  7250.           TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
  7251.           yyval.ttype = yyvsp[0].ttype;
  7252.         ;
  7253.     break;}
  7254. case 720:
  7255. #line 3730 "parse.y"
  7256. { yyval.ttype = NULL_TREE; ;
  7257.     break;}
  7258. case 721:
  7259. #line 3732 "parse.y"
  7260. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7261.     break;}
  7262. case 722:
  7263. #line 3734 "parse.y"
  7264. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7265.     break;}
  7266. case 723:
  7267. #line 3736 "parse.y"
  7268. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  7269.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  7270.         ;
  7271.     break;}
  7272. case 724:
  7273. #line 3742 "parse.y"
  7274. { got_scope = NULL_TREE; ;
  7275.     break;}
  7276. case 725:
  7277. #line 3747 "parse.y"
  7278. { yyval.ttype = ansi_opname[MULT_EXPR]; ;
  7279.     break;}
  7280. case 726:
  7281. #line 3749 "parse.y"
  7282. { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
  7283.     break;}
  7284. case 727:
  7285. #line 3751 "parse.y"
  7286. { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
  7287.     break;}
  7288. case 728:
  7289. #line 3753 "parse.y"
  7290. { yyval.ttype = ansi_opname[PLUS_EXPR]; ;
  7291.     break;}
  7292. case 729:
  7293. #line 3755 "parse.y"
  7294. { yyval.ttype = ansi_opname[MINUS_EXPR]; ;
  7295.     break;}
  7296. case 730:
  7297. #line 3757 "parse.y"
  7298. { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
  7299.     break;}
  7300. case 731:
  7301. #line 3759 "parse.y"
  7302. { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
  7303.     break;}
  7304. case 732:
  7305. #line 3761 "parse.y"
  7306. { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
  7307.     break;}
  7308. case 733:
  7309. #line 3763 "parse.y"
  7310. { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
  7311.     break;}
  7312. case 734:
  7313. #line 3765 "parse.y"
  7314. { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
  7315.     break;}
  7316. case 735:
  7317. #line 3767 "parse.y"
  7318. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7319.     break;}
  7320. case 736:
  7321. #line 3769 "parse.y"
  7322. { yyval.ttype = ansi_opname[LT_EXPR]; ;
  7323.     break;}
  7324. case 737:
  7325. #line 3771 "parse.y"
  7326. { yyval.ttype = ansi_opname[GT_EXPR]; ;
  7327.     break;}
  7328. case 738:
  7329. #line 3773 "parse.y"
  7330. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7331.     break;}
  7332. case 739:
  7333. #line 3775 "parse.y"
  7334. { yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
  7335.     break;}
  7336. case 740:
  7337. #line 3777 "parse.y"
  7338. { yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
  7339.     break;}
  7340. case 741:
  7341. #line 3779 "parse.y"
  7342. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7343.     break;}
  7344. case 742:
  7345. #line 3781 "parse.y"
  7346. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7347.     break;}
  7348. case 743:
  7349. #line 3783 "parse.y"
  7350. { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
  7351.     break;}
  7352. case 744:
  7353. #line 3785 "parse.y"
  7354. { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
  7355.     break;}
  7356. case 745:
  7357. #line 3787 "parse.y"
  7358. { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
  7359.     break;}
  7360. case 746:
  7361. #line 3789 "parse.y"
  7362. { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
  7363.     break;}
  7364. case 747:
  7365. #line 3791 "parse.y"
  7366. { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
  7367.     break;}
  7368. case 748:
  7369. #line 3793 "parse.y"
  7370. { yyval.ttype = ansi_opname[COND_EXPR]; ;
  7371.     break;}
  7372. case 749:
  7373. #line 3795 "parse.y"
  7374. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7375.     break;}
  7376. case 750:
  7377. #line 3797 "parse.y"
  7378. { yyval.ttype = ansi_opname[COMPONENT_REF]; ;
  7379.     break;}
  7380. case 751:
  7381. #line 3799 "parse.y"
  7382. { yyval.ttype = ansi_opname[MEMBER_REF]; ;
  7383.     break;}
  7384. case 752:
  7385. #line 3801 "parse.y"
  7386. { yyval.ttype = ansi_opname[CALL_EXPR]; ;
  7387.     break;}
  7388. case 753:
  7389. #line 3803 "parse.y"
  7390. { yyval.ttype = ansi_opname[ARRAY_REF]; ;
  7391.     break;}
  7392. case 754:
  7393. #line 3805 "parse.y"
  7394. { yyval.ttype = ansi_opname[NEW_EXPR]; ;
  7395.     break;}
  7396. case 755:
  7397. #line 3807 "parse.y"
  7398. { yyval.ttype = ansi_opname[DELETE_EXPR]; ;
  7399.     break;}
  7400. case 756:
  7401. #line 3809 "parse.y"
  7402. { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
  7403.     break;}
  7404. case 757:
  7405. #line 3811 "parse.y"
  7406. { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
  7407.     break;}
  7408. case 758:
  7409. #line 3814 "parse.y"
  7410. { yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7411.     break;}
  7412. case 759:
  7413. #line 3816 "parse.y"
  7414. { yyval.ttype = ansi_opname[ERROR_MARK]; ;
  7415.     break;}
  7416. }
  7417.    /* the action file gets copied in in place of this dollarsign */
  7418. #line 480 "/usr/local/lib/bison.simple"
  7419.  
  7420.   yyvsp -= yylen;
  7421.   yyssp -= yylen;
  7422. #ifdef YYLSP_NEEDED
  7423.   yylsp -= yylen;
  7424. #endif
  7425.  
  7426. #if YYDEBUG != 0
  7427.   if (yydebug)
  7428.     {
  7429.       short *ssp1 = yyss - 1;
  7430.       fprintf (stderr, "state stack now");
  7431.       while (ssp1 != yyssp)
  7432.     fprintf (stderr, " %d", *++ssp1);
  7433.       fprintf (stderr, "\n");
  7434.     }
  7435. #endif
  7436.  
  7437.   *++yyvsp = yyval;
  7438.  
  7439. #ifdef YYLSP_NEEDED
  7440.   yylsp++;
  7441.   if (yylen == 0)
  7442.     {
  7443.       yylsp->first_line = yylloc.first_line;
  7444.       yylsp->first_column = yylloc.first_column;
  7445.       yylsp->last_line = (yylsp-1)->last_line;
  7446.       yylsp->last_column = (yylsp-1)->last_column;
  7447.       yylsp->text = 0;
  7448.     }
  7449.   else
  7450.     {
  7451.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  7452.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  7453.     }
  7454. #endif
  7455.  
  7456.   /* Now "shift" the result of the reduction.
  7457.      Determine what state that goes to,
  7458.      based on the state we popped back to
  7459.      and the rule number reduced by.  */
  7460.  
  7461.   yyn = yyr1[yyn];
  7462.  
  7463.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  7464.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  7465.     yystate = yytable[yystate];
  7466.   else
  7467.     yystate = yydefgoto[yyn - YYNTBASE];
  7468.  
  7469.   goto yynewstate;
  7470.  
  7471. yyerrlab:   /* here on detecting error */
  7472.  
  7473.   if (! yyerrstatus)
  7474.     /* If not already recovering from an error, report this error.  */
  7475.     {
  7476.       ++yynerrs;
  7477.  
  7478. #ifdef YYERROR_VERBOSE
  7479.       yyn = yypact[yystate];
  7480.  
  7481.       if (yyn > YYFLAG && yyn < YYLAST)
  7482.     {
  7483.       int size = 0;
  7484.       char *msg;
  7485.       int x, count;
  7486.  
  7487.       count = 0;
  7488.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  7489.       for (x = (yyn < 0 ? -yyn : 0);
  7490.            x < (sizeof(yytname) / sizeof(char *)); x++)
  7491.         if (yycheck[x + yyn] == x)
  7492.           size += strlen(yytname[x]) + 15, count++;
  7493.       msg = (char *) malloc(size + 15);
  7494.       if (msg != 0)
  7495.         {
  7496.           strcpy(msg, "parse error");
  7497.  
  7498.           if (count < 5)
  7499.         {
  7500.           count = 0;
  7501.           for (x = (yyn < 0 ? -yyn : 0);
  7502.                x < (sizeof(yytname) / sizeof(char *)); x++)
  7503.             if (yycheck[x + yyn] == x)
  7504.               {
  7505.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  7506.             strcat(msg, yytname[x]);
  7507.             strcat(msg, "'");
  7508.             count++;
  7509.               }
  7510.         }
  7511.           yyerror(msg);
  7512.           free(msg);
  7513.         }
  7514.       else
  7515.         yyerror ("parse error; also virtual memory exceeded");
  7516.     }
  7517.       else
  7518. #endif /* YYERROR_VERBOSE */
  7519.     yyerror("parse error");
  7520.     }
  7521.  
  7522.   goto yyerrlab1;
  7523. yyerrlab1:   /* here on error raised explicitly by an action */
  7524.  
  7525.   if (yyerrstatus == 3)
  7526.     {
  7527.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  7528.  
  7529.       /* return failure if at end of input */
  7530.       if (yychar == YYEOF)
  7531.     YYABORT;
  7532.  
  7533. #if YYDEBUG != 0
  7534.       if (yydebug)
  7535.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  7536. #endif
  7537.  
  7538.       yychar = YYEMPTY;
  7539.     }
  7540.  
  7541.   /* Else will try to reuse lookahead token
  7542.      after shifting the error token.  */
  7543.  
  7544.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  7545.  
  7546.   goto yyerrhandle;
  7547.  
  7548. yyerrdefault:  /* current state does not do anything special for the error token. */
  7549.  
  7550. #if 0
  7551.   /* This is wrong; only states that explicitly want error tokens
  7552.      should shift them.  */
  7553.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  7554.   if (yyn) goto yydefault;
  7555. #endif
  7556.  
  7557. yyerrpop:   /* pop the current state because it cannot handle the error token */
  7558.  
  7559.   if (yyssp == yyss) YYABORT;
  7560.   yyvsp--;
  7561.   yystate = *--yyssp;
  7562. #ifdef YYLSP_NEEDED
  7563.   yylsp--;
  7564. #endif
  7565.  
  7566. #if YYDEBUG != 0
  7567.   if (yydebug)
  7568.     {
  7569.       short *ssp1 = yyss - 1;
  7570.       fprintf (stderr, "Error: state stack now");
  7571.       while (ssp1 != yyssp)
  7572.     fprintf (stderr, " %d", *++ssp1);
  7573.       fprintf (stderr, "\n");
  7574.     }
  7575. #endif
  7576.  
  7577. yyerrhandle:
  7578.  
  7579.   yyn = yypact[yystate];
  7580.   if (yyn == YYFLAG)
  7581.     goto yyerrdefault;
  7582.  
  7583.   yyn += YYTERROR;
  7584.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  7585.     goto yyerrdefault;
  7586.  
  7587.   yyn = yytable[yyn];
  7588.   if (yyn < 0)
  7589.     {
  7590.       if (yyn == YYFLAG)
  7591.     goto yyerrpop;
  7592.       yyn = -yyn;
  7593.       goto yyreduce;
  7594.     }
  7595.   else if (yyn == 0)
  7596.     goto yyerrpop;
  7597.  
  7598.   if (yyn == YYFINAL)
  7599.     YYACCEPT;
  7600.  
  7601. #if YYDEBUG != 0
  7602.   if (yydebug)
  7603.     fprintf(stderr, "Shifting error token, ");
  7604. #endif
  7605.  
  7606.   *++yyvsp = yylval;
  7607. #ifdef YYLSP_NEEDED
  7608.   *++yylsp = yylloc;
  7609. #endif
  7610.  
  7611.   yystate = yyn;
  7612.   goto yynewstate;
  7613. }
  7614. #line 3819 "parse.y"
  7615.  
  7616.  
  7617. #ifdef SPEW_DEBUG
  7618. const char *
  7619. debug_yytranslate (value)
  7620.     int value;
  7621. {
  7622.   return yytname[YYTRANSLATE (value)];
  7623. }
  7624.  
  7625. #endif
  7626.